mirror of git://gcc.gnu.org/git/gcc.git
bitset, [...]: Remove trailing whitespace.
* include/debug/bitset, include/debug/debug.h, include/debug/deque, include/debug/formatter.h, include/debug/hash_map.h, include/debug/hash_multimap.h, include/debug/hash_multiset.h, include/debug/hash_set, include/debug/hash_set.h, include/debug/list, include/debug/map.h, include/debug/multimap.h, include/debug/multiset.h, include/debug/safe_base.h, include/debug/safe_iterator.h, include/debug/safe_iterator.tcc, include/debug/safe_sequence.h, include/debug/set.h, include/debug/string, include/debug/vector: Remove trailing whitespace. From-SVN: r74463
This commit is contained in:
parent
a6f86b5167
commit
526da49cc7
|
@ -1,3 +1,15 @@
|
|||
2003-12-09 Bernardo Innocenti <bernie@develer.com>
|
||||
|
||||
* include/debug/bitset, include/debug/debug.h, include/debug/deque,
|
||||
include/debug/formatter.h, include/debug/hash_map.h,
|
||||
include/debug/hash_multimap.h, include/debug/hash_multiset.h,
|
||||
include/debug/hash_set, include/debug/hash_set.h, include/debug/list,
|
||||
include/debug/map.h, include/debug/multimap.h,
|
||||
include/debug/multiset.h, include/debug/safe_base.h,
|
||||
include/debug/safe_iterator.h, include/debug/safe_iterator.tcc,
|
||||
include/debug/safe_sequence.h, include/debug/set.h,
|
||||
include/debug/string, include/debug/vector: Remove trailing whitespace.
|
||||
|
||||
2003-12-09 Bernardo Innocenti <bernie@develer.com>
|
||||
|
||||
* include/c_compatibility/iso646.h, include/c_compatibility/limits.h,
|
||||
|
|
|
@ -41,7 +41,7 @@ namespace __gnu_debug_def
|
|||
class bitset
|
||||
: public __gnu_norm::bitset<_Nb>, public __gnu_debug::_Safe_sequence_base
|
||||
{
|
||||
typedef __gnu_norm::bitset<_Nb> _Base;
|
||||
typedef __gnu_norm::bitset<_Nb> _Base;
|
||||
typedef __gnu_debug::_Safe_sequence_base _Safe_base;
|
||||
|
||||
public:
|
||||
|
@ -125,7 +125,7 @@ namespace __gnu_debug_def
|
|||
typename std::basic_string<_CharT,_Traits,_Allocator>::size_type
|
||||
__pos = 0,
|
||||
typename std::basic_string<_CharT,_Traits,_Allocator>::size_type
|
||||
__n = (std::basic_string<_CharT,_Traits,_Allocator>::npos))
|
||||
__n = (std::basic_string<_CharT,_Traits,_Allocator>::npos))
|
||||
: _Base(__str, __pos, __n) { }
|
||||
|
||||
bitset(const _Base& __x) : _Base(__x), _Safe_base() { }
|
||||
|
|
|
@ -174,7 +174,7 @@ _GLIBCXX_DEBUG_VERIFY(::__gnu_debug::__check_partitioned(_First, _Last, \
|
|||
_Value), \
|
||||
_M_message(::__gnu_debug::__msg_unpartitioned) \
|
||||
._M_iterator(_First, #_First) \
|
||||
._M_iterator(_Last, #_Last) \
|
||||
._M_iterator(_Last, #_Last) \
|
||||
._M_string(#_Value))
|
||||
|
||||
/** Verify that the iterator range [_First, _Last) is partitioned
|
||||
|
@ -185,7 +185,7 @@ _GLIBCXX_DEBUG_VERIFY(::__gnu_debug::__check_partitioned(_First, _Last, \
|
|||
_Value, _Pred), \
|
||||
_M_message(::__gnu_debug::__msg_unpartitioned_pred) \
|
||||
._M_iterator(_First, #_First) \
|
||||
._M_iterator(_Last, #_Last) \
|
||||
._M_iterator(_Last, #_Last) \
|
||||
._M_string(#_Pred) \
|
||||
._M_string(#_Value))
|
||||
|
||||
|
|
|
@ -50,15 +50,15 @@ namespace __gnu_debug_def
|
|||
typedef typename _Allocator::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,deque>
|
||||
iterator;
|
||||
iterator;
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,deque>
|
||||
const_iterator;
|
||||
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::pointer pointer;
|
||||
typedef typename _Allocator::const_pointer const_pointer;
|
||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||
|
|
|
@ -64,10 +64,10 @@ namespace __gnu_debug_def
|
|||
typedef typename _Base::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, hash_map>
|
||||
iterator;
|
||||
iterator;
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,
|
||||
hash_map>
|
||||
const_iterator;
|
||||
const_iterator;
|
||||
|
||||
typedef typename _Base::allocator_type allocator_type;
|
||||
|
||||
|
@ -192,7 +192,7 @@ namespace __gnu_debug_def
|
|||
{
|
||||
iterator __victim(_Base::find(__key), this);
|
||||
if (__victim != end())
|
||||
return this->erase(__victim), 1;
|
||||
return this->erase(__victim), 1;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -46,22 +46,22 @@ namespace __gnu_debug_def
|
|||
_EqualKey, _Alloc> >
|
||||
{
|
||||
typedef __gnu_cxx::hash_multimap<_Value,_Tp,_HashFcn, _EqualKey,_Alloc>
|
||||
_Base;
|
||||
_Base;
|
||||
typedef __gnu_debug::_Safe_sequence<hash_multimap> _Safe_base;
|
||||
|
||||
public:
|
||||
typedef typename _Base::key_type key_type;
|
||||
typedef typename _Base::data_type data_type;
|
||||
typedef typename _Base::mapped_type mapped_type;
|
||||
typedef typename _Base::value_type value_type;
|
||||
typedef typename _Base::hasher hasher;
|
||||
typedef typename _Base::key_equal key_equal;
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
typedef typename _Base::pointer pointer;
|
||||
typedef typename _Base::const_pointer const_pointer;
|
||||
typedef typename _Base::reference reference;
|
||||
typedef typename _Base::const_reference const_reference;
|
||||
typedef typename _Base::key_type key_type;
|
||||
typedef typename _Base::data_type data_type;
|
||||
typedef typename _Base::mapped_type mapped_type;
|
||||
typedef typename _Base::value_type value_type;
|
||||
typedef typename _Base::hasher hasher;
|
||||
typedef typename _Base::key_equal key_equal;
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
typedef typename _Base::pointer pointer;
|
||||
typedef typename _Base::const_pointer const_pointer;
|
||||
typedef typename _Base::reference reference;
|
||||
typedef typename _Base::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,
|
||||
hash_multimap> iterator;
|
||||
|
|
|
@ -46,20 +46,20 @@ namespace __gnu_debug_def
|
|||
_EqualKey, _Alloc> >
|
||||
{
|
||||
typedef __gnu_cxx:: hash_multiset<_Value,_HashFcn, _EqualKey,_Alloc>
|
||||
_Base;
|
||||
_Base;
|
||||
typedef __gnu_debug::_Safe_sequence<hash_multiset> _Safe_base;
|
||||
|
||||
public:
|
||||
typedef typename _Base::key_type key_type;
|
||||
typedef typename _Base::value_type value_type;
|
||||
typedef typename _Base::hasher hasher;
|
||||
typedef typename _Base::key_equal key_equal;
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
typedef typename _Base::pointer pointer;
|
||||
typedef typename _Base::const_pointer const_pointer;
|
||||
typedef typename _Base::reference reference;
|
||||
typedef typename _Base::const_reference const_reference;
|
||||
typedef typename _Base::key_type key_type;
|
||||
typedef typename _Base::value_type value_type;
|
||||
typedef typename _Base::hasher hasher;
|
||||
typedef typename _Base::key_equal key_equal;
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
typedef typename _Base::pointer pointer;
|
||||
typedef typename _Base::const_pointer const_pointer;
|
||||
typedef typename _Base::reference reference;
|
||||
typedef typename _Base::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,
|
||||
hash_multiset> iterator;
|
||||
|
|
|
@ -51,15 +51,15 @@ namespace __gnu_debug_def
|
|||
typedef typename _Allocator::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, list>
|
||||
iterator;
|
||||
iterator;
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator, list>
|
||||
const_iterator;
|
||||
|
||||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::pointer pointer;
|
||||
typedef typename _Allocator::const_pointer const_pointer;
|
||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||
|
|
|
@ -48,8 +48,8 @@ namespace __gnu_debug_def
|
|||
|
||||
public:
|
||||
// types:
|
||||
typedef _Key key_type;
|
||||
typedef _Tp mapped_type;
|
||||
typedef _Key key_type;
|
||||
typedef _Tp mapped_type;
|
||||
typedef std::pair<const _Key, _Tp> value_type;
|
||||
typedef _Compare key_compare;
|
||||
typedef _Allocator allocator_type;
|
||||
|
|
|
@ -48,12 +48,12 @@ namespace __gnu_debug_def
|
|||
|
||||
public:
|
||||
// types:
|
||||
typedef _Key key_type;
|
||||
typedef _Key value_type;
|
||||
typedef _Compare key_compare;
|
||||
typedef _Compare value_compare;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::reference reference;
|
||||
typedef _Key key_type;
|
||||
typedef _Key value_type;
|
||||
typedef _Compare key_compare;
|
||||
typedef _Compare value_compare;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::reference reference;
|
||||
typedef typename _Allocator::const_reference const_reference;
|
||||
|
||||
typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multiset>
|
||||
|
|
|
@ -366,7 +366,7 @@ namespace __gnu_debug
|
|||
template<typename _Iterator1, typename _Iterator2>
|
||||
static pair<difference_type, _Distance_precision>
|
||||
_M_get_distance(const _Iterator1& __lhs, const _Iterator2& __rhs,
|
||||
std::forward_iterator_tag)
|
||||
std::forward_iterator_tag)
|
||||
{
|
||||
return std::make_pair(__lhs.base() == __rhs.base()? 0 : 1,
|
||||
__dp_equality);
|
||||
|
@ -384,7 +384,7 @@ namespace __gnu_debug
|
|||
template<typename _IteratorL, typename _IteratorR, typename _Sequence>
|
||||
inline bool
|
||||
operator==(const _Safe_iterator<_IteratorL, _Sequence>& __lhs,
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
{
|
||||
_GLIBCXX_DEBUG_VERIFY(! __lhs._M_singular() && ! __rhs._M_singular(),
|
||||
_M_message(__msg_iter_compare_bad)
|
||||
|
@ -416,7 +416,7 @@ namespace __gnu_debug
|
|||
template<typename _IteratorL, typename _IteratorR, typename _Sequence>
|
||||
inline bool
|
||||
operator!=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs,
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
{
|
||||
_GLIBCXX_DEBUG_VERIFY(! __lhs._M_singular() && ! __rhs._M_singular(),
|
||||
_M_message(__msg_iter_compare_bad)
|
||||
|
@ -480,7 +480,7 @@ namespace __gnu_debug
|
|||
template<typename _IteratorL, typename _IteratorR, typename _Sequence>
|
||||
inline bool
|
||||
operator<=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs,
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
{
|
||||
_GLIBCXX_DEBUG_VERIFY(! __lhs._M_singular() && ! __rhs._M_singular(),
|
||||
_M_message(__msg_iter_order_bad)
|
||||
|
@ -544,7 +544,7 @@ namespace __gnu_debug
|
|||
template<typename _IteratorL, typename _IteratorR, typename _Sequence>
|
||||
inline bool
|
||||
operator>=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs,
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
|
||||
{
|
||||
_GLIBCXX_DEBUG_VERIFY(! __lhs._M_singular() && ! __rhs._M_singular(),
|
||||
_M_message(__msg_iter_order_bad)
|
||||
|
|
|
@ -48,11 +48,11 @@ namespace __gnu_debug_def
|
|||
|
||||
public:
|
||||
// types:
|
||||
typedef _Key key_type;
|
||||
typedef _Key value_type;
|
||||
typedef _Compare key_compare;
|
||||
typedef _Compare value_compare;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef _Key key_type;
|
||||
typedef _Key value_type;
|
||||
typedef _Compare key_compare;
|
||||
typedef _Compare value_compare;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::reference reference;
|
||||
typedef typename _Allocator::const_reference const_reference;
|
||||
|
||||
|
|
|
@ -48,9 +48,9 @@ namespace __gnu_debug
|
|||
|
||||
public:
|
||||
// types:
|
||||
typedef _Traits traits_type;
|
||||
typedef typename _Traits::char_type value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef _Traits traits_type;
|
||||
typedef typename _Traits::char_type value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::size_type size_type;
|
||||
typedef typename _Allocator::difference_type difference_type;
|
||||
typedef typename _Allocator::reference reference;
|
||||
|
|
|
@ -62,8 +62,8 @@ namespace __gnu_debug_def
|
|||
typedef typename _Base::size_type size_type;
|
||||
typedef typename _Base::difference_type difference_type;
|
||||
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef _Tp value_type;
|
||||
typedef _Allocator allocator_type;
|
||||
typedef typename _Allocator::pointer pointer;
|
||||
typedef typename _Allocator::const_pointer const_pointer;
|
||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||
|
|
Loading…
Reference in New Issue