From 1b57f5f26866c82bf4224b54235333b03601eb70 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 18 Jan 2023 08:59:08 -0500 Subject: [PATCH] the old Intel compiler does have std::make_unique with C++14 --- modules/c++/std/include/std/memory | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/c++/std/include/std/memory b/modules/c++/std/include/std/memory index b2daf5e54..192f67094 100644 --- a/modules/c++/std/include/std/memory +++ b/modules/c++/std/include/std/memory @@ -30,11 +30,6 @@ #ifndef CODA_OSS_NO_std_make_unique #if CODA_OSS_cpp14 #define CODA_OSS_NO_std_make_unique 1 // part of C++14 - // Well ... this old Intel compiler (mostly) as enough C++14 for our needs ... (see CPlusPlus.h) - #if defined(__INTEL_COMPILER) && (__INTEL_COMPILER_BUILD_DATE <= 20151021) - #undef CODA_OSS_NO_std_make_unique - #define CODA_OSS_NO_std_make_unique 0 // ... but no std::make_unique - #endif #else #define CODA_OSS_NO_std_make_unique 0 // use our own #endif