summaryrefslogtreecommitdiffstats
path: root/libstdc++-v3/include/debug/unordered_map
diff options
context:
space:
mode:
authorfdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-29 20:11:50 +0000
committerfdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-29 20:11:50 +0000
commitad86ca1a49621e10f4ca3a0127a574d8b4d9feac (patch)
treef5936d88794627a9de34beca288056058a9a9241 /libstdc++-v3/include/debug/unordered_map
parent2aba8c96ff2c4ef49ec3ecc573b9e93b98b15e6e (diff)
downloadppe42-gcc-ad86ca1a49621e10f4ca3a0127a574d8b4d9feac.tar.gz
ppe42-gcc-ad86ca1a49621e10f4ca3a0127a574d8b4d9feac.zip
2011-06-29 François Dumont <francois.cppdevs@free.fr>
* include/debug/set.h, unordered_map, multiset.h, forward_list, unordered_set, vector, deque, string, list, multimap.h: Remove base class default constructor calls. * include/debug/map.h: Likewise and cleanup several redefinition of base iterator typedef. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175665 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/debug/unordered_map')
-rw-r--r--libstdc++-v3/include/debug/unordered_map20
1 files changed, 10 insertions, 10 deletions
diff --git a/libstdc++-v3/include/debug/unordered_map b/libstdc++-v3/include/debug/unordered_map
index 7a4265c7b0d..4f087b75992 100644
--- a/libstdc++-v3/include/debug/unordered_map
+++ b/libstdc++-v3/include/debug/unordered_map
@@ -89,25 +89,25 @@ namespace __debug
: _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
__last)),
__gnu_debug::__base(__last), __n,
- __hf, __eql, __a), _Safe_base() { }
+ __hf, __eql, __a) { }
unordered_map(const unordered_map& __x)
- : _Base(__x), _Safe_base() { }
+ : _Base(__x) { }
unordered_map(const _Base& __x)
- : _Base(__x), _Safe_base() { }
+ : _Base(__x) { }
unordered_map(unordered_map&& __x)
noexcept(__and_<is_nothrow_copy_constructible<_Hash>,
is_nothrow_copy_constructible<_Pred>>::value)
- : _Base(std::move(__x)), _Safe_base() { }
+ : _Base(std::move(__x)) { }
unordered_map(initializer_list<value_type> __l,
size_type __n = 0,
const hasher& __hf = hasher(),
const key_equal& __eql = key_equal(),
const allocator_type& __a = allocator_type())
- : _Base(__l, __n, __hf, __eql, __a), _Safe_base() { }
+ : _Base(__l, __n, __hf, __eql, __a) { }
~unordered_map() noexcept { }
@@ -381,25 +381,25 @@ namespace __debug
: _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
__last)),
__gnu_debug::__base(__last), __n,
- __hf, __eql, __a), _Safe_base() { }
+ __hf, __eql, __a) { }
unordered_multimap(const unordered_multimap& __x)
- : _Base(__x), _Safe_base() { }
+ : _Base(__x) { }
unordered_multimap(const _Base& __x)
- : _Base(__x), _Safe_base() { }
+ : _Base(__x) { }
unordered_multimap(unordered_multimap&& __x)
noexcept(__and_<is_nothrow_copy_constructible<_Hash>,
is_nothrow_copy_constructible<_Pred>>::value)
- : _Base(std::move(__x)), _Safe_base() { }
+ : _Base(std::move(__x)) { }
unordered_multimap(initializer_list<value_type> __l,
size_type __n = 0,
const hasher& __hf = hasher(),
const key_equal& __eql = key_equal(),
const allocator_type& __a = allocator_type())
- : _Base(__l, __n, __hf, __eql, __a), _Safe_base() { }
+ : _Base(__l, __n, __hf, __eql, __a) { }
~unordered_multimap() noexcept { }
OpenPOWER on IntegriCloud