From e82152f267d49cd00cf7fa676697bfe1b7c60ae5 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 25 Aug 2014 18:43:51 +0300 Subject: [c++11] Backport for gcc 4.6 support --- std/bind.hpp | 2 +- std/function.hpp | 2 +- std/shared_ptr.hpp | 2 +- std/weak_ptr.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'std') diff --git a/std/bind.hpp b/std/bind.hpp index 88a9e85cff..07c5abfc54 100644 --- a/std/bind.hpp +++ b/std/bind.hpp @@ -6,7 +6,7 @@ #undef new #endif -#if __cplusplus > 199711L +#if (__cplusplus > 199711L) || defined(__GXX_EXPERIMENTAL_CXX0X__) #include using std::bind; diff --git a/std/function.hpp b/std/function.hpp index ca461298d5..9c3f6d9a4c 100644 --- a/std/function.hpp +++ b/std/function.hpp @@ -5,7 +5,7 @@ #undef new #endif -#if __cplusplus > 199711L +#if (__cplusplus > 199711L) || defined(__GXX_EXPERIMENTAL_CXX0X__) #include using std::function; diff --git a/std/shared_ptr.hpp b/std/shared_ptr.hpp index fd70c8f731..d05e4e0b25 100644 --- a/std/shared_ptr.hpp +++ b/std/shared_ptr.hpp @@ -5,7 +5,7 @@ #undef new #endif -#if __cplusplus > 199711L +#if (__cplusplus > 199711L) || defined(__GXX_EXPERIMENTAL_CXX0X__) #include using std::shared_ptr; diff --git a/std/weak_ptr.hpp b/std/weak_ptr.hpp index ac9f183e07..842e086efd 100644 --- a/std/weak_ptr.hpp +++ b/std/weak_ptr.hpp @@ -5,7 +5,7 @@ #undef new #endif -#if __cplusplus > 199711L +#if (__cplusplus > 199711L) || defined(__GXX_EXPERIMENTAL_CXX0X__) #include using std::weak_ptr; -- cgit v1.2.3