diff options
author | Bernardo Innocenti <bernie@develer.com> | 2003-12-09 05:31:53 +0100 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2003-12-09 05:31:53 +0100 |
commit | fa30fe72d1d6e281786d296333b18ceff3d8c089 (patch) | |
tree | e7baac8d46bd354909d55bcc6367f5ced6fd5f03 /libstdc++-v3/include/ext/rb_tree | |
parent | 526da49cc7dea9f6022612320eb980535b91eecb (diff) | |
download | gcc-fa30fe72d1d6e281786d296333b18ceff3d8c089.tar.gz |
algorithm, [...]: Remove trailing whitespace.
* include/ext/algorithm, include/ext/debug_allocator.h,
include/ext/enc_filebuf.h, include/ext/functional,
include/ext/hash_fun.h, include/ext/hash_map, include/ext/hash_set,
include/ext/hashtable.h, include/ext/iterator,
include/ext/malloc_allocator.h, include/ext/memory,
include/ext/mt_allocator.h, include/ext/numeric,
include/ext/pod_char_traits.h, include/ext/pool_allocator.h,
include/ext/rb_tree, include/ext/rope, include/ext/ropeimpl.h,
include/ext/slist, include/ext/stdio_filebuf.h,
include/ext/stdio_sync_filebuf.h: Remove trailing whitespace.
From-SVN: r74464
Diffstat (limited to 'libstdc++-v3/include/ext/rb_tree')
-rw-r--r-- | libstdc++-v3/include/ext/rb_tree | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/ext/rb_tree b/libstdc++-v3/include/ext/rb_tree index f0aed4714f9..2c38b39706e 100644 --- a/libstdc++-v3/include/ext/rb_tree +++ b/libstdc++-v3/include/ext/rb_tree @@ -70,7 +70,7 @@ namespace __gnu_cxx { using std::_Rb_tree; using std::allocator; - + // Class rb_tree is not part of the C++ standard. It is provided for // compatibility with the HP STL. @@ -85,13 +85,13 @@ namespace __gnu_cxx { 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()) : _Base(__comp, __a) { } - + ~rb_tree() { } }; } // namespace __gnu_cxx -#endif +#endif |