diff options
| author | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-21 19:56:36 +0000 |
|---|---|---|
| committer | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-21 19:56:36 +0000 |
| commit | 14551d3ec69faf7c1de0d6bb7cda2558fbbbe53a (patch) | |
| tree | 70702a6a8c175845ee2ccfeade84908e722ccf59 /libstdc++-v3/include/debug/unordered_map | |
| parent | aa52f48f102941d811ab94deb69ad42a86843f86 (diff) | |
| download | ppe42-gcc-14551d3ec69faf7c1de0d6bb7cda2558fbbbe53a.tar.gz ppe42-gcc-14551d3ec69faf7c1de0d6bb7cda2558fbbbe53a.zip | |
2011-07-21 François Dumont <francois.cppdevs@free.fr>
* include/debug/safe_unordered_sequence.h,
safe_unordered_sequence.tcc: Rename respectively in...
* include/debug/safe_unordered_container.h,
safe_unordered_container.tcc: ...those. _Safe_unordered_sequence
rename _Safe_unordered_container.
* include/debug/safe_unordered_base.h: _Safe_unordered_sequence_base
rename _Safe_unordered_container_base.
* include/debug/unordered_map, unordered_set: Adapt to previous
modifications.
* config/abi/pre/gnu.ver: Likewise.
* src/debug.cc: Likewise.
* include/Makefile.am: Likewise.
* include/Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176584 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/debug/unordered_map')
| -rw-r--r-- | libstdc++-v3/include/debug/unordered_map | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libstdc++-v3/include/debug/unordered_map b/libstdc++-v3/include/debug/unordered_map index 93ce517b1f7..0e300983bda 100644 --- a/libstdc++-v3/include/debug/unordered_map +++ b/libstdc++-v3/include/debug/unordered_map @@ -35,7 +35,7 @@ #else # include <unordered_map> -#include <debug/safe_unordered_sequence.h> +#include <debug/safe_unordered_container.h> #include <debug/safe_iterator.h> #include <debug/safe_local_iterator.h> @@ -50,12 +50,12 @@ namespace __debug typename _Alloc = std::allocator<_Key> > class unordered_map : public _GLIBCXX_STD_C::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>, - public __gnu_debug::_Safe_unordered_sequence<unordered_map<_Key, _Tp, + public __gnu_debug::_Safe_unordered_container<unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc> > { typedef _GLIBCXX_STD_C::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc> _Base; - typedef __gnu_debug::_Safe_unordered_sequence<unordered_map> _Safe_base; + typedef __gnu_debug::_Safe_unordered_container<unordered_map> _Safe_base; typedef typename _Base::const_iterator _Base_const_iterator; typedef typename _Base::iterator _Base_iterator; typedef typename _Base::const_local_iterator _Base_const_local_iterator; @@ -430,12 +430,12 @@ namespace __debug class unordered_multimap : public _GLIBCXX_STD_C::unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>, - public __gnu_debug::_Safe_unordered_sequence<unordered_multimap<_Key, + public __gnu_debug::_Safe_unordered_container<unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc> > { typedef _GLIBCXX_STD_C::unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc> _Base; - typedef __gnu_debug::_Safe_unordered_sequence<unordered_multimap> + typedef __gnu_debug::_Safe_unordered_container<unordered_multimap> _Safe_base; typedef typename _Base::const_iterator _Base_const_iterator; typedef typename _Base::iterator _Base_iterator; |

