summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/profile/multiset.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/profile/multiset.h')
-rw-r--r--libstdc++-v3/include/profile/multiset.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/libstdc++-v3/include/profile/multiset.h b/libstdc++-v3/include/profile/multiset.h
index f76b4fac6d8..358879726d9 100644
--- a/libstdc++-v3/include/profile/multiset.h
+++ b/libstdc++-v3/include/profile/multiset.h
@@ -1,6 +1,6 @@
// Profiling multiset implementation -*- C++ -*-
-// Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
+// Copyright (C) 2009-2012 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -68,7 +68,12 @@ namespace __profile
const _Allocator& __a = _Allocator())
: _Base(__comp, __a) { }
+#ifdef __GXX_EXPERIMENTAL_CXX0X__
+ template<typename _InputIterator,
+ typename = std::_RequireInputIter<_InputIterator>>
+#else
template<typename _InputIterator>
+#endif
multiset(_InputIterator __first, _InputIterator __last,
const _Compare& __comp = _Compare(),
const _Allocator& __a = _Allocator())
@@ -215,7 +220,12 @@ namespace __profile
{ return iterator(_Base::insert(__position, std::move(__x))); }
#endif
+#ifdef __GXX_EXPERIMENTAL_CXX0X__
+ template<typename _InputIterator,
+ typename = std::_RequireInputIter<_InputIterator>>
+#else
template<typename _InputIterator>
+#endif
void
insert(_InputIterator __first, _InputIterator __last)
{ _Base::insert(__first, __last); }