Skip to content

Commit

Permalink
* include/debug/deque (__gnu_debug::deque): Make base class C++11
Browse files Browse the repository at this point in the history
	allocator aware.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215223 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
redi committed Sep 12, 2014
1 parent 311f821 commit 4c559ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions libstdc++-v3/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2014-09-12 Jonathan Wakely <[email protected]>

* include/debug/deque (__gnu_debug::deque): Make base class C++11
allocator aware.

2014-09-12 Jonathan Wakely <[email protected]>

PR libstdc++/59603
Expand Down
4 changes: 2 additions & 2 deletions libstdc++-v3/include/debug/deque
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4c559ed

Please sign in to comment.