mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 03:40:36 +08:00
deque (__gnu_debug::deque): Make base class C++11 allocator aware.
* include/debug/deque (__gnu_debug::deque): Make base class C++11 allocator aware. From-SVN: r215223
This commit is contained in:
parent
a5d567ec32
commit
b6f866946b
@ -1,3 +1,8 @@
|
||||
2014-09-12 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/debug/deque (__gnu_debug::deque): Make base class C++11
|
||||
allocator aware.
|
||||
|
||||
2014-09-12 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/59603
|
||||
|
@ -43,12 +43,12 @@ namespace __debug
|
||||
class deque
|
||||
: public __gnu_debug::_Safe_container<
|
||||
deque<_Tp, _Allocator>, _Allocator,
|
||||
__gnu_debug::_Safe_sequence, false>,
|
||||
__gnu_debug::_Safe_sequence>,
|
||||
public _GLIBCXX_STD_C::deque<_Tp, _Allocator>
|
||||
{
|
||||
typedef _GLIBCXX_STD_C::deque<_Tp, _Allocator> _Base;
|
||||
typedef __gnu_debug::_Safe_container<
|
||||
deque, _Allocator, __gnu_debug::_Safe_sequence, false> _Safe;
|
||||
deque, _Allocator, __gnu_debug::_Safe_sequence> _Safe;
|
||||
|
||||
typedef typename _Base::const_iterator _Base_const_iterator;
|
||||
typedef typename _Base::iterator _Base_iterator;
|
||||
|
Loading…
x
Reference in New Issue
Block a user