diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-07-01 19:24:36 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-07-01 19:24:36 +0000 |
commit | 5a33687da07cb8ffc68ef5065ed46bab5c4d6555 (patch) | |
tree | a040ca6f46310d29afc2a8f8b3337eb6c692a8eb /libcxx/include | |
parent | 68b0e8456e7934b97ffb22b07fdde705abd33fd1 (diff) | |
download | bcm5719-llvm-5a33687da07cb8ffc68ef5065ed46bab5c4d6555.tar.gz bcm5719-llvm-5a33687da07cb8ffc68ef5065ed46bab5c4d6555.zip |
Correct for new rules regarding implicitly deleted special members. http://llvm.org/bugs/show_bug.cgi?id=10191
llvm-svn: 134248
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/map | 14 | ||||
-rw-r--r-- | libcxx/include/memory | 173 | ||||
-rw-r--r-- | libcxx/include/set | 14 | ||||
-rw-r--r-- | libcxx/include/unordered_map | 14 | ||||
-rw-r--r-- | libcxx/include/unordered_set | 14 | ||||
-rw-r--r-- | libcxx/include/utility | 19 |
6 files changed, 240 insertions, 8 deletions
diff --git a/libcxx/include/map b/libcxx/include/map index 9405617cccd..2bb352376b9 100644 --- a/libcxx/include/map +++ b/libcxx/include/map @@ -755,6 +755,13 @@ public: insert(__m.begin(), __m.end()); } + _LIBCPP_INLINE_VISIBILITY + map& operator=(const map& __m) + { + __tree_ = __m.__tree_; + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES _LIBCPP_INLINE_VISIBILITY @@ -1497,6 +1504,13 @@ public: insert(__m.begin(), __m.end()); } + _LIBCPP_INLINE_VISIBILITY + multimap& operator=(const multimap& __m) + { + __tree_ = __m.__tree_; + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES _LIBCPP_INLINE_VISIBILITY diff --git a/libcxx/include/memory b/libcxx/include/memory index f2d6d716a7a..3a0064a91b3 100644 --- a/libcxx/include/memory +++ b/libcxx/include/memory @@ -1889,13 +1889,48 @@ public: _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {} +#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && + is_nothrow_copy_constructible<_T2>::value) + : __first_(__p.first()), + __second_(__p.second()) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && + is_nothrow_copy_assignable<_T2>::value) + { + __first_ = __p.first(); + __second_ = __p.second(); + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES - _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && is_nothrow_move_constructible<_T2>::value) - : __first_(_VSTD::forward<_T1>(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {} + : __first_(_VSTD::forward<_T1>(__p.first())), + __second_(_VSTD::forward<_T2>(__p.second())) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) + _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && + is_nothrow_move_assignable<_T2>::value) + { + __first_ = _VSTD::forward<_T1>(__p.first()); + __second_ = _VSTD::forward<_T2>(__p.second()); + return *this; + } + #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;} _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;} @@ -1936,13 +1971,46 @@ public: _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {} +#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && + is_nothrow_copy_constructible<_T2>::value) + : _T1(__p.first()), __second_(__p.second()) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && + is_nothrow_copy_assignable<_T2>::value) + { + _T1::operator=(__p.first()); + __second_ = __p.second(); + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES - _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && is_nothrow_move_constructible<_T2>::value) : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) + _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && + is_nothrow_move_assignable<_T2>::value) + { + _T1::operator=(_VSTD::move(__p.first())); + __second_ = _VSTD::forward<_T2>(__p.second()); + return *this; + } + #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;} _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;} @@ -1984,11 +2052,46 @@ public: is_nothrow_move_constructible<_T2>::value) : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {} +#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && + is_nothrow_copy_constructible<_T2>::value) + : _T2(__p.second()), __first_(__p.first()) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && + is_nothrow_copy_assignable<_T2>::value) + { + _T2::operator=(__p.second()); + __first_ = __p.first(); + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES + + _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) + _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && + is_nothrow_move_constructible<_T2>::value) : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) + _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && + is_nothrow_move_assignable<_T2>::value) + { + _T2::operator=(_VSTD::forward<_T2>(__p.second())); + __first_ = _VSTD::move(__p.first()); + return *this; + } + #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;} _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;} @@ -2027,13 +2130,46 @@ public: _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {} +#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && + is_nothrow_copy_constructible<_T2>::value) + : _T1(__p.first()), _T2(__p.second()) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && + is_nothrow_copy_assignable<_T2>::value) + { + _T1::operator=(__p.first()); + _T2::operator=(__p.second()); + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES - _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && is_nothrow_move_constructible<_T2>::value) : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {} + + _LIBCPP_INLINE_VISIBILITY + __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) + _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && + is_nothrow_move_assignable<_T2>::value) + { + _T1::operator=(_VSTD::move(__p.first())); + _T2::operator=(_VSTD::move(__p.second())); + return *this; + } + #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;} _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;} @@ -2070,13 +2206,42 @@ public: _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2) : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {} +#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + + _LIBCPP_INLINE_VISIBILITY + __compressed_pair(const __compressed_pair& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && + is_nothrow_copy_constructible<_T2>::value) + : base(__p) {} + + _LIBCPP_INLINE_VISIBILITY + __compressed_pair& operator=(const __compressed_pair& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && + is_nothrow_copy_assignable<_T2>::value) + { + base::operator=(__p); + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES + _LIBCPP_INLINE_VISIBILITY __compressed_pair(__compressed_pair&& __p) _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && is_nothrow_move_constructible<_T2>::value) : base(_VSTD::move(__p)) {} + + _LIBCPP_INLINE_VISIBILITY + __compressed_pair& operator=(__compressed_pair&& __p) + _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && + is_nothrow_move_assignable<_T2>::value) + { + base::operator=(_VSTD::move(__p)); + return *this; + } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS + _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();} _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();} diff --git a/libcxx/include/set b/libcxx/include/set index 717703f191d..9248fd79b24 100644 --- a/libcxx/include/set +++ b/libcxx/include/set @@ -408,6 +408,13 @@ public: insert(__s.begin(), __s.end()); } + _LIBCPP_INLINE_VISIBILITY + set& operator=(const set& __s) + { + __tree_ = __s.__tree_; + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES _LIBCPP_INLINE_VISIBILITY set(set&& __s) @@ -738,6 +745,13 @@ public: insert(__s.begin(), __s.end()); } + _LIBCPP_INLINE_VISIBILITY + multiset& operator=(const multiset& __s) + { + __tree_ = __s.__tree_; + return *this; + } + #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES _LIBCPP_INLINE_VISIBILITY multiset(multiset&& __s) diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map index 394be32dfe7..e1381f7614d 100644 --- a/libcxx/include/unordered_map +++ b/libcxx/include/unordered_map @@ -691,7 +691,12 @@ public: const hasher& __hf, const key_equal& __eql, const allocator_type& __a); // ~unordered_map() = default; - // unordered_map& operator=(const unordered_map& __u) = default; + _LIBCPP_INLINE_VISIBILITY + unordered_map& operator=(const unordered_map& __u) + { + __table_ = __u.__table_; + return *this; + } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES unordered_map& operator=(unordered_map&& __u) _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); @@ -1295,7 +1300,12 @@ public: const hasher& __hf, const key_equal& __eql, const allocator_type& __a); // ~unordered_multimap() = default; - // unordered_multimap& operator=(const unordered_multimap& __u) = default; + _LIBCPP_INLINE_VISIBILITY + unordered_multimap& operator=(const unordered_multimap& __u) + { + __table_ = __u.__table_; + return *this; + } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES unordered_multimap& operator=(unordered_multimap&& __u) _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); diff --git a/libcxx/include/unordered_set b/libcxx/include/unordered_set index 2798a618a83..2ef54334804 100644 --- a/libcxx/include/unordered_set +++ b/libcxx/include/unordered_set @@ -373,7 +373,12 @@ public: const hasher& __hf, const key_equal& __eql, const allocator_type& __a); // ~unordered_set() = default; - // unordered_set& operator=(const unordered_set& __u) = default; + _LIBCPP_INLINE_VISIBILITY + unordered_set& operator=(const unordered_set& __u) + { + __table_ = __u.__table_; + return *this; + } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES unordered_set& operator=(unordered_set&& __u) _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); @@ -766,7 +771,12 @@ public: const hasher& __hf, const key_equal& __eql, const allocator_type& __a); // ~unordered_multiset() = default; - // unordered_multiset& operator=(const unordered_multiset& __u) = default; + _LIBCPP_INLINE_VISIBILITY + unordered_multiset& operator=(const unordered_multiset& __u) + { + __table_ = __u.__table_; + return *this; + } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES unordered_multiset& operator=(unordered_multiset&& __u) _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); diff --git a/libcxx/include/utility b/libcxx/include/utility index c4068593d86..3850f8f3524 100644 --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -232,7 +232,18 @@ struct _LIBCPP_VISIBLE pair : first(__p.first), second(__p.second) {} _LIBCPP_INLINE_VISIBILITY + pair(const pair& __p) + _NOEXCEPT_(is_nothrow_copy_constructible<first_type>::value && + is_nothrow_copy_constructible<second_type>::value) + : first(__p.first), + second(__p.second) + { + } + + _LIBCPP_INLINE_VISIBILITY pair& operator=(const pair& __p) + _NOEXCEPT_(is_nothrow_copy_assignable<first_type>::value && + is_nothrow_copy_assignable<second_type>::value) { first = __p.first; second = __p.second; @@ -259,6 +270,14 @@ struct _LIBCPP_VISIBLE pair second(_VSTD::forward<_U2>(__p.second)) {} _LIBCPP_INLINE_VISIBILITY + pair(pair&& __p) _NOEXCEPT_(is_nothrow_move_constructible<first_type>::value && + is_nothrow_move_constructible<second_type>::value) + : first(_VSTD::forward<first_type>(__p.first)), + second(_VSTD::forward<second_type>(__p.second)) + { + } + + _LIBCPP_INLINE_VISIBILITY pair& operator=(pair&& __p) _NOEXCEPT_(is_nothrow_move_assignable<first_type>::value && is_nothrow_move_assignable<second_type>::value) |