Commit 6b1328eb by Jonathan Wakely Committed by Jonathan Wakely

array_allocator.h: Replace uses of __GXX_EXPERIMENTAL_CXX0X__ with __cplusplus.

	* include/ext/array_allocator.h: Replace uses of
	__GXX_EXPERIMENTAL_CXX0X__ with __cplusplus.

From-SVN: r193644
parent b51eb4ff
2012-11-20 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/ext/array_allocator.h: Replace uses of
__GXX_EXPERIMENTAL_CXX0X__ with __cplusplus.
2012-11-19 Jonathan Wakely <jwakely.gcc@gmail.com>
* testsuite/20_util/allocator/requirements/typedefs.cc: Check rebind
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment