Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@mapswithme.com>2014-08-25 19:43:51 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:25:30 +0300
commite82152f267d49cd00cf7fa676697bfe1b7c60ae5 (patch)
tree9cebd72d04fd50480ea343f32fc48fc9c075cf20 /std/bind.hpp
parentfaba78e0c4db8f820709188146a29495836a660b (diff)
[c++11] Backport for gcc 4.6 support
Diffstat (limited to 'std/bind.hpp')
-rw-r--r--std/bind.hpp2
1 files changed, 1 insertions, 1 deletions
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 <functional>
using std::bind;