aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext/mt_allocator.h
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2012-11-10 12:27:22 -0500
committerJason Merrill <jason@gcc.gnu.org>2012-11-10 12:27:22 -0500
commit734f50238f863ae90d2e8caa2323aaa02380ff48 (patch)
treed9b336f73d8705f567b8e2871708f2dca7cadb44 /libstdc++-v3/include/ext/mt_allocator.h
parent3467ad5ce6f6e456699a44d563a7ab0bf576903b (diff)
downloadgcc-734f50238f863ae90d2e8caa2323aaa02380ff48.zip
gcc-734f50238f863ae90d2e8caa2323aaa02380ff48.tar.gz
gcc-734f50238f863ae90d2e8caa2323aaa02380ff48.tar.bz2
* many: Replace uses of __GXX_EXPERIMENTAL_CXX0X__ with __cplusplus.
From-SVN: r193392
Diffstat (limited to 'libstdc++-v3/include/ext/mt_allocator.h')
-rw-r--r--libstdc++-v3/include/ext/mt_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/ext/mt_allocator.h b/libstdc++-v3/include/ext/mt_allocator.h
index 069476b..1ce695a 100644
--- a/libstdc++-v3/include/ext/mt_allocator.h
+++ b/libstdc++-v3/include/ext/mt_allocator.h
@@ -588,7 +588,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
max_size() const _GLIBCXX_USE_NOEXCEPT
{ return size_t(-1) / sizeof(_Tp); }
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if __cplusplus >= 201103L
template<typename _Up, typename... _Args>
void
construct(_Up* __p, _Args&&... __args)