Skip to content

Commit

Permalink
more robust check for make_unique
Browse files Browse the repository at this point in the history
  • Loading branch information
sommer committed Dec 18, 2020
1 parent e1d22aa commit 398e924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/veins/veins.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ using namespace omnetpp;
* %Veins - The open source vehicular network simulation framework.
*/
namespace veins {
#ifdef __cpp_lib_make_unique
#if (__cplusplus >= 201402L) || (defined __cpp_lib_make_unique)
using std::make_unique;
#else
/**
Expand Down

0 comments on commit 398e924

Please sign in to comment.