mirror of git://gcc.gnu.org/git/gcc.git
re PR libstdc++/23417 (bits/stl_tree.h isn't -Weffc++ clean)
2005-09-12 Benjamin Kosnik <bkoz@redhat.com> PR libstdc++/23417 * include/bits/stl_list.h (_List_impl): Use member initialization list for -Weffc++. * include/bits/stl_tree.h (_Rb_tree_impl): Same. From-SVN: r104191
This commit is contained in:
parent
d63d5d0c32
commit
dda6e8cd3a
|
|
@ -3,6 +3,7 @@
|
||||||
PR libstdc++/23417
|
PR libstdc++/23417
|
||||||
* include/bits/stl_list.h (_List_impl): Use member initialization
|
* include/bits/stl_list.h (_List_impl): Use member initialization
|
||||||
list for -Weffc++.
|
list for -Weffc++.
|
||||||
|
* include/bits/stl_tree.h (_Rb_tree_impl): Same.
|
||||||
|
|
||||||
2005-09-12 Paolo Carlini <pcarlini@suse.de>
|
2005-09-12 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -403,7 +403,8 @@ namespace std
|
||||||
|
|
||||||
_Rb_tree_impl(const _Node_allocator& __a = _Node_allocator(),
|
_Rb_tree_impl(const _Node_allocator& __a = _Node_allocator(),
|
||||||
const _Key_compare& __comp = _Key_compare())
|
const _Key_compare& __comp = _Key_compare())
|
||||||
: _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0)
|
: _Node_allocator(__a), _M_key_compare(__comp), _M_header(),
|
||||||
|
_M_node_count(0)
|
||||||
{
|
{
|
||||||
this->_M_header._M_color = _S_red;
|
this->_M_header._M_color = _S_red;
|
||||||
this->_M_header._M_parent = 0;
|
this->_M_header._M_parent = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue