diff options
Diffstat (limited to 'libstdc++-v3/include/debug/multimap.h')
-rw-r--r-- | libstdc++-v3/include/debug/multimap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/debug/multimap.h b/libstdc++-v3/include/debug/multimap.h index 9157fa3458a..e1e09bc07af 100644 --- a/libstdc++-v3/include/debug/multimap.h +++ b/libstdc++-v3/include/debug/multimap.h @@ -201,8 +201,8 @@ namespace __debug #ifdef __GXX_EXPERIMENTAL_CXX0X__ template<typename _Pair, typename = typename - std::enable_if<std::is_convertible<_Pair, - value_type>::value>::type> + std::enable_if<std::is_constructible<value_type, + _Pair&&>::value>::type> iterator insert(_Pair&& __x) { return iterator(_Base::insert(std::forward<_Pair>(__x)), this); } @@ -227,8 +227,8 @@ namespace __debug #ifdef __GXX_EXPERIMENTAL_CXX0X__ template<typename _Pair, typename = typename - std::enable_if<std::is_convertible<_Pair, - value_type>::value>::type> + std::enable_if<std::is_constructible<value_type, + _Pair&&>::value>::type> iterator insert(const_iterator __position, _Pair&& __x) { |