From abb160e68964ddf534e240e3ea0bf90af53f894d Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 5 Jul 2013 18:06:00 +0000 Subject: Remove implicit conversion from __value_type to value_type in [unordered_][multi]map. This fixes http://llvm.org/bugs/show_bug.cgi?id=16549 llvm-svn: 185711 --- libcxx/include/unordered_map | 48 +++++++++++++++++--------------------------- 1 file changed, 18 insertions(+), 30 deletions(-) (limited to 'libcxx/include/unordered_map') diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map index 0d2ce292076..78e630757b4 100644 --- a/libcxx/include/unordered_map +++ b/libcxx/include/unordered_map @@ -325,7 +325,7 @@ template _LIBCPP_BEGIN_NAMESPACE_STD -template ::value +template ::value #if __has_feature(is_final) && !__is_final(_Hash) #endif @@ -333,7 +333,6 @@ template ::value class __unordered_map_hasher : private _Hash { - typedef pair _Cp; public: _LIBCPP_INLINE_VISIBILITY __unordered_map_hasher() @@ -347,18 +346,17 @@ public: const _Hash& hash_function() const _NOEXCEPT {return *this;} _LIBCPP_INLINE_VISIBILITY size_t operator()(const _Cp& __x) const - {return static_cast(*this)(__x.first);} + {return static_cast(*this)(__x.__cc.first);} _LIBCPP_INLINE_VISIBILITY size_t operator()(const _Key& __x) const {return static_cast(*this)(__x);} }; -template -class __unordered_map_hasher<_Key, _Tp, _Hash, false> +template +class __unordered_map_hasher<_Key, _Cp, _Hash, false> { _Hash __hash_; - typedef pair _Cp; public: _LIBCPP_INLINE_VISIBILITY __unordered_map_hasher() @@ -372,13 +370,13 @@ public: const _Hash& hash_function() const _NOEXCEPT {return __hash_;} _LIBCPP_INLINE_VISIBILITY size_t operator()(const _Cp& __x) const - {return __hash_(__x.first);} + {return __hash_(__x.__cc.first);} _LIBCPP_INLINE_VISIBILITY size_t operator()(const _Key& __x) const {return __hash_(__x);} }; -template ::value +template ::value #if __has_feature(is_final) && !__is_final(_Pred) #endif @@ -386,7 +384,6 @@ template ::value class __unordered_map_equal : private _Pred { - typedef pair _Cp; public: _LIBCPP_INLINE_VISIBILITY __unordered_map_equal() @@ -400,21 +397,20 @@ public: const _Pred& key_eq() const _NOEXCEPT {return *this;} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Cp& __x, const _Cp& __y) const - {return static_cast(*this)(__x.first, __y.first);} + {return static_cast(*this)(__x.__cc.first, __y.__cc.first);} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Cp& __x, const _Key& __y) const - {return static_cast(*this)(__x.first, __y);} + {return static_cast(*this)(__x.__cc.first, __y);} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Key& __x, const _Cp& __y) const - {return static_cast(*this)(__x, __y.first);} + {return static_cast(*this)(__x, __y.__cc.first);} }; -template -class __unordered_map_equal<_Key, _Tp, _Pred, false> +template +class __unordered_map_equal<_Key, _Cp, _Pred, false> { _Pred __pred_; - typedef pair _Cp; public: _LIBCPP_INLINE_VISIBILITY __unordered_map_equal() @@ -428,13 +424,13 @@ public: const _Pred& key_eq() const _NOEXCEPT {return __pred_;} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Cp& __x, const _Cp& __y) const - {return __pred_(__x.first, __y.first);} + {return __pred_(__x.__cc.first, __y.__cc.first);} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Cp& __x, const _Key& __y) const - {return __pred_(__x.first, __y);} + {return __pred_(__x.__cc.first, __y);} _LIBCPP_INLINE_VISIBILITY bool operator()(const _Key& __x, const _Cp& __y) const - {return __pred_(__x, __y.first);} + {return __pred_(__x, __y.__cc.first);} }; template @@ -655,8 +651,6 @@ private: {__nc = std::move(__v.__nc); return *this;} ~__value_type() {__cc.~value_type();} - - operator const value_type& () const {return __cc;} }; #else struct __value_type @@ -673,12 +667,10 @@ private: template __value_type(const _A0& __a0, const _A1& __a1) : __cc(__a0, __a1) {} - - operator const value_type& () const {return __cc;} }; #endif - typedef __unordered_map_hasher __hasher; - typedef __unordered_map_equal __key_equal; + typedef __unordered_map_hasher __hasher; + typedef __unordered_map_equal __key_equal; typedef typename allocator_traits::template #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES rebind_alloc<__value_type> @@ -1321,8 +1313,6 @@ private: {__nc = std::move(__v.__nc); return *this;} ~__value_type() {__cc.~value_type();} - - operator const value_type& () const {return __cc;} }; #else struct __value_type @@ -1339,12 +1329,10 @@ private: template __value_type(const _A0& __a0, const _A1& __a1) : __cc(__a0, __a1) {} - - operator const value_type& () const {return __cc;} }; #endif - typedef __unordered_map_hasher __hasher; - typedef __unordered_map_equal __key_equal; + typedef __unordered_map_hasher __hasher; + typedef __unordered_map_equal __key_equal; typedef typename allocator_traits::template #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES rebind_alloc<__value_type> -- cgit v1.2.3