PR libstdc++/21770 (cont: debug-mode)
2005-06-06 Paolo Carlini <pcarlini@suse.de> PR libstdc++/21770 (cont: debug-mode) * include/debug/deque: Use _Base typedefs for pointer, const_pointer, reference, const_reference. * include/debug/list: Likewise. * include/debug/map.h: Likewise. * include/debug/multimap.h: Likewise. * include/debug/multiset.h: Likewise. * include/debug/set.h: Likewise. * include/debug/vector: Likewise. From-SVN: r100692
This commit is contained in:
parent
67daed71ca
commit
09952accc4
@ -1,3 +1,15 @@
|
|||||||
|
2005-06-06 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
|
PR libstdc++/21770 (cont: debug-mode)
|
||||||
|
* include/debug/deque: Use _Base typedefs for pointer, const_pointer,
|
||||||
|
reference, const_reference.
|
||||||
|
* include/debug/list: Likewise.
|
||||||
|
* include/debug/map.h: Likewise.
|
||||||
|
* include/debug/multimap.h: Likewise.
|
||||||
|
* include/debug/multiset.h: Likewise.
|
||||||
|
* include/debug/set.h: Likewise.
|
||||||
|
* include/debug/vector: Likewise.
|
||||||
|
|
||||||
2005-06-06 Paolo Carlini <pcarlini@suse.de>
|
2005-06-06 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
Port from libstdcxx_so_7-branch:
|
Port from libstdcxx_so_7-branch:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging deque implementation -*- C++ -*-
|
// Debugging deque implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -46,8 +46,8 @@ namespace __gnu_debug_def
|
|||||||
typedef __gnu_debug::_Safe_sequence<deque> _Safe_base;
|
typedef __gnu_debug::_Safe_sequence<deque> _Safe_base;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,deque>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,deque>
|
||||||
iterator;
|
iterator;
|
||||||
@ -59,8 +59,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef _Tp value_type;
|
typedef _Tp value_type;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging list implementation -*- C++ -*-
|
// Debugging list implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -47,8 +47,8 @@ namespace __gnu_debug_def
|
|||||||
typedef __gnu_debug::_Safe_sequence<list> _Safe_base;
|
typedef __gnu_debug::_Safe_sequence<list> _Safe_base;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, list>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, list>
|
||||||
iterator;
|
iterator;
|
||||||
@ -60,8 +60,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef _Tp value_type;
|
typedef _Tp value_type;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging map implementation -*- C++ -*-
|
// Debugging map implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -53,8 +53,8 @@ namespace __gnu_debug_def
|
|||||||
typedef std::pair<const _Key, _Tp> value_type;
|
typedef std::pair<const _Key, _Tp> value_type;
|
||||||
typedef _Compare key_compare;
|
typedef _Compare key_compare;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, map>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, map>
|
||||||
iterator;
|
iterator;
|
||||||
@ -63,8 +63,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef typename _Base::size_type size_type;
|
typedef typename _Base::size_type size_type;
|
||||||
typedef typename _Base::difference_type difference_type;
|
typedef typename _Base::difference_type difference_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging multimap implementation -*- C++ -*-
|
// Debugging multimap implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -53,8 +53,8 @@ namespace __gnu_debug_def
|
|||||||
typedef std::pair<const _Key, _Tp> value_type;
|
typedef std::pair<const _Key, _Tp> value_type;
|
||||||
typedef _Compare key_compare;
|
typedef _Compare key_compare;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multimap>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multimap>
|
||||||
iterator;
|
iterator;
|
||||||
@ -63,8 +63,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef typename _Base::size_type size_type;
|
typedef typename _Base::size_type size_type;
|
||||||
typedef typename _Base::difference_type difference_type;
|
typedef typename _Base::difference_type difference_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging multiset implementation -*- C++ -*-
|
// Debugging multiset implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -53,8 +53,8 @@ namespace __gnu_debug_def
|
|||||||
typedef _Compare key_compare;
|
typedef _Compare key_compare;
|
||||||
typedef _Compare value_compare;
|
typedef _Compare value_compare;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multiset>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multiset>
|
||||||
iterator;
|
iterator;
|
||||||
@ -63,8 +63,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef typename _Base::size_type size_type;
|
typedef typename _Base::size_type size_type;
|
||||||
typedef typename _Base::difference_type difference_type;
|
typedef typename _Base::difference_type difference_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging set implementation -*- C++ -*-
|
// Debugging set implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -53,8 +53,8 @@ namespace __gnu_debug_def
|
|||||||
typedef _Compare key_compare;
|
typedef _Compare key_compare;
|
||||||
typedef _Compare value_compare;
|
typedef _Compare value_compare;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::reference reference;
|
typedef typename _Base::reference reference;
|
||||||
typedef typename _Allocator::const_reference const_reference;
|
typedef typename _Base::const_reference const_reference;
|
||||||
|
|
||||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, set>
|
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, set>
|
||||||
iterator;
|
iterator;
|
||||||
@ -63,8 +63,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef typename _Base::size_type size_type;
|
typedef typename _Base::size_type size_type;
|
||||||
typedef typename _Base::difference_type difference_type;
|
typedef typename _Base::difference_type difference_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
@ -64,8 +64,8 @@ namespace __gnu_debug_def
|
|||||||
|
|
||||||
typedef _Tp value_type;
|
typedef _Tp value_type;
|
||||||
typedef _Allocator allocator_type;
|
typedef _Allocator allocator_type;
|
||||||
typedef typename _Allocator::pointer pointer;
|
typedef typename _Base::pointer pointer;
|
||||||
typedef typename _Allocator::const_pointer const_pointer;
|
typedef typename _Base::const_pointer const_pointer;
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user