From 876bc7afed451fd0f1eba52be44041044d051906 Mon Sep 17 00:00:00 2001 From: James Donald Date: Wed, 28 Sep 2016 19:40:58 -0700 Subject: [PATCH] Remove deprecated STL11_ALLOWED macro --- src/autowiring/C++11/cpp11.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/autowiring/C++11/cpp11.h b/src/autowiring/C++11/cpp11.h index c6a3aedd6..981d313e4 100644 --- a/src/autowiring/C++11/cpp11.h +++ b/src/autowiring/C++11/cpp11.h @@ -4,8 +4,6 @@ // The reason this header exists is due to the asymmetric availability of C++11 on our // various compiler targets. -#define STL11_ALLOWED 1 - #define IS_CLANG defined(__clang_major__) #define CLANG_CHECK(maj, min) (__clang_major__ == maj && __clang_minor__ >= min || __clang_major__ > maj) #define GCC_CHECK(maj, min) (__GNUC__ == maj && __GNUC_MINOR__ >= min || __GNUC__ > maj)