summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-20 00:24:18 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-20 00:24:18 +0000
commit5f3041286ba8d45c5c3d9ce63ed9e4889743b4d1 (patch)
tree935e282812cec72df902aadec9df0808e38e7e7d /libstdc++-v3/include
parent650e46704f8ed2e7004dc0cfbb25ccc4dfcaa330 (diff)
downloadgcc-5f3041286ba8d45c5c3d9ce63ed9e4889743b4d1.tar.gz
* include/ext/array_allocator.h: Replace uses of
__GXX_EXPERIMENTAL_CXX0X__ with __cplusplus. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193644 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/ext/array_allocator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/ext/array_allocator.h b/libstdc++-v3/include/ext/array_allocator.h
index 736ae02373e..f3a85728371 100644
--- a/libstdc++-v3/include/ext/array_allocator.h
+++ b/libstdc++-v3/include/ext/array_allocator.h
@@ -34,7 +34,7 @@
#include <bits/functexcept.h>
#include <tr1/array>
#include <bits/move.h>
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if __cplusplus >= 201103L
#include <type_traits>
#endif
@@ -115,7 +115,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
typedef _Tp value_type;
typedef _Array array_type;
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if __cplusplus >= 201103L
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 2103. std::allocator propagate_on_container_move_assignment
typedef std::true_type propagate_on_container_move_assignment;