diff options
| author | Benjamin Kosnik <bkoz@redhat.com> | 2002-03-07 06:53:23 +0000 |
|---|---|---|
| committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2002-03-07 06:53:23 +0000 |
| commit | d3d526aca6ce9d2f04104b038f092e14731fa813 (patch) | |
| tree | 428cd7a7ea52f5643e42c3727dd8fc84af7f1761 /libstdc++-v3/src | |
| parent | 76a773f3b9657b2e4209de6c996d8d479ed727e7 (diff) | |
| download | gcc-d3d526aca6ce9d2f04104b038f092e14731fa813.tar.gz gcc-d3d526aca6ce9d2f04104b038f092e14731fa813.tar.bz2 gcc-d3d526aca6ce9d2f04104b038f092e14731fa813.zip | |
stl_tree.h (_S_rb_tree_red): Make enum.
2002-03-06 Benjamin Kosnik <bkoz@redhat.com>
Stephen M. Webb <stephen.webb@bregmasoft.com>
* include/bits/stl_tree.h (_S_rb_tree_red): Make enum.
(_S_rb_tree_black): Make enum.
Clean. Format.
* include/bits/stl_bvector.h (__WORD_BIT): To _M_word_bit, enum.
* include/bits/stl_algo.h (__stl_chunk_size): _M_chunk_size, enum.
(__stl_threshold): _M_threshold, enum.
* src/stl-inst.cc: Same.
* config/linker-map.gnu: Remove.
* testsuite/23_containers/vector_bool.cc: New.
Co-Authored-By: Stephen M. Webb <stephen.webb@bregmasoft.com>
From-SVN: r50393
Diffstat (limited to 'libstdc++-v3/src')
| -rw-r--r-- | libstdc++-v3/src/stl-inst.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libstdc++-v3/src/stl-inst.cc b/libstdc++-v3/src/stl-inst.cc index 43cef9e6d2c..eaf55599f2b 100644 --- a/libstdc++-v3/src/stl-inst.cc +++ b/libstdc++-v3/src/stl-inst.cc @@ -39,12 +39,6 @@ namespace std { - const int __stl_threshold = 16; - const int __stl_chunk_size = 7; - const int __WORD_BIT = int(CHAR_BIT*sizeof(unsigned int)); - const _Rb_tree_Color_type _S_rb_tree_red = false; - const _Rb_tree_Color_type _S_rb_tree_black = true; - template class __malloc_alloc_template<0>; #ifndef __USE_MALLOC @@ -55,5 +49,4 @@ namespace std void vector<unsigned int>:: _M_insert_aux(vector<unsigned int>::iterator, unsigned int const &); - } // namespace std |
