diff options
author | Sadie Powell <sadie@witchery.services> | 2020-08-01 13:24:36 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-08-01 13:24:36 +0100 |
commit | 63dd77804f71e88fc3dcf709745de17bf4f13abd (patch) | |
tree | f71e57f1f6081ea1208bd17eeb7a2612dbef4ecc /include | |
parent | 83871bb72c21deef9d232121bef12ffdf8e1fe7c (diff) |
Silence some copy warnings on C++11 compilers.
Diffstat (limited to 'include')
-rw-r--r-- | include/flat_map.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/flat_map.h b/include/flat_map.h index 5d888fa9b..8afe180ae 100644 --- a/include/flat_map.h +++ b/include/flat_map.h @@ -92,6 +92,10 @@ class flat_map_base { } +#if __cplusplus >= 201103L + flat_map_base& operator=(const flat_map_base& other) = default; +#endif + size_type size() const { return vect.size(); } bool empty() const { return vect.empty(); } size_type capacity() const { return vect.capacity(); } @@ -223,6 +227,10 @@ class flat_set : public detail::flat_map_base<T, Comp, T, ElementComp> { } +#if __cplusplus >= 201103L + flat_set& operator=(const flat_set& other) = default; +#endif + std::pair<iterator, bool> insert(const value_type& x) { return this->insert_single(x); @@ -263,6 +271,10 @@ class flat_multiset : public detail::flat_map_base<T, Comp, T, ElementComp> { } +#if __cplusplus >= 201103L + flat_multiset& operator=(const flat_multiset& other) = default; +#endif + iterator insert(const value_type& x) { return this->insert_multi(x); @@ -306,6 +318,10 @@ class flat_map : public detail::flat_map_base<std::pair<T, U>, Comp, T, detail:: { } +#if __cplusplus >= 201103L + flat_map& operator=(const flat_map& other) = default; +#endif + std::pair<iterator, bool> insert(const value_type& x) { return this->insert_single(x); @@ -358,6 +374,10 @@ class flat_multimap : public detail::flat_map_base<std::pair<T, U>, Comp, T, det { } +#if __cplusplus >= 201103L + flat_multimap& operator=(const flat_multimap& other) = default; +#endif + iterator insert(const value_type& x) { return this->insert_multi(x); |