diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2004-09-02 18:22:20 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2004-09-02 18:22:20 +0000 |
commit | 35dc4c015a0b6e0558a892bbbcca2cc73e435f61 (patch) | |
tree | a50fabae2580d2542a6bbc9b556676bb681231bd /libstdc++-v3/include/ext | |
parent | 10060b8391a93fae88a3f1163e68ad79dde59a44 (diff) | |
download | gcc-35dc4c015a0b6e0558a892bbbcca2cc73e435f61.zip gcc-35dc4c015a0b6e0558a892bbbcca2cc73e435f61.tar.gz gcc-35dc4c015a0b6e0558a892bbbcca2cc73e435f61.tar.bz2 |
re PR libstdc++/17259 (One more _S_leaf incorrectly qualified with _RopeRep:: in ropeimpl.h)
2004-09-02 Benjamin Kosnik <bkoz@redhat.com>
Leland Wang <llwang@infor.org>
PR libstdc++/17259
* include/ext/ropeimpl.h (rope::_S_compare): Use
_Rope_constants::_S_leaf.
Co-Authored-By: Leland Wang <llwang@infor.org>
From-SVN: r86973
Diffstat (limited to 'libstdc++-v3/include/ext')
-rw-r--r-- | libstdc++-v3/include/ext/ropeimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/ext/ropeimpl.h b/libstdc++-v3/include/ext/ropeimpl.h index 7463196..5187769 100644 --- a/libstdc++-v3/include/ext/ropeimpl.h +++ b/libstdc++-v3/include/ext/ropeimpl.h @@ -1438,7 +1438,7 @@ namespace __gnu_cxx if (_Rope_constants::_S_leaf == __left->_M_tag) { _RopeLeaf* __l = (_RopeLeaf*) __left; - if (_RopeRep::_S_leaf == __right->_M_tag) + if (_Rope_constants::_S_leaf == __right->_M_tag) { _RopeLeaf* __r = (_RopeLeaf*) __right; return lexicographical_compare_3way(__l->_M_data, |