diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 13:43:56 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 13:43:56 +0000 |
| commit | 9fa6c850d65d8d017eea467beaf5b608794cfcb7 (patch) | |
| tree | d8bea7b9eab5e1d4372a7b0a3c041c07dad395f7 /libstdc++-v3/include/ext/rb_tree | |
| parent | fa2d45b7b633a8c1bba15095f4974c73ada14db7 (diff) | |
| download | ppe42-gcc-9fa6c850d65d8d017eea467beaf5b608794cfcb7.tar.gz ppe42-gcc-9fa6c850d65d8d017eea467beaf5b608794cfcb7.zip | |
2004-06-15 Paolo Carlini <pcarlini@suse.de>
* include/ext/hashtable.h: Trivial formatting fixes.
* include/ext/rb_tree: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83183 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/ext/rb_tree')
| -rw-r--r-- | libstdc++-v3/include/ext/rb_tree | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libstdc++-v3/include/ext/rb_tree b/libstdc++-v3/include/ext/rb_tree index 2c38b39706e..3d7bb35becf 100644 --- a/libstdc++-v3/include/ext/rb_tree +++ b/libstdc++-v3/include/ext/rb_tree @@ -1,6 +1,6 @@ // rb_tree extension -*- C++ -*- -// Copyright (C) 2002 Free Software Foundation, Inc. +// Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -81,17 +81,18 @@ namespace __gnu_cxx */ template <class _Key, class _Value, class _KeyOfValue, class _Compare, class _Alloc = allocator<_Value> > - struct rb_tree : public _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> - { - typedef _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base; - typedef typename _Base::allocator_type allocator_type; + struct rb_tree + : public _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> + { + typedef _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base; + typedef typename _Base::allocator_type allocator_type; - rb_tree(const _Compare& __comp = _Compare(), - const allocator_type& __a = allocator_type()) + rb_tree(const _Compare& __comp = _Compare(), + const allocator_type& __a = allocator_type()) : _Base(__comp, __a) { } - ~rb_tree() { } - }; + ~rb_tree() { } + }; } // namespace __gnu_cxx #endif |

