summaryrefslogtreecommitdiffstats
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-02 18:22:20 +0000
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-02 18:22:20 +0000
commitce2f7f53c69a167a5f3211613d6ccd8c80b8856d (patch)
treea50fabae2580d2542a6bbc9b556676bb681231bd /libstdc++-v3
parenta619b0502ab5d66bd7729ff047a39614de79611b (diff)
downloadppe42-gcc-ce2f7f53c69a167a5f3211613d6ccd8c80b8856d.tar.gz
ppe42-gcc-ce2f7f53c69a167a5f3211613d6ccd8c80b8856d.zip
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86973 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog7
-rw-r--r--libstdc++-v3/include/ext/ropeimpl.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index aff78de2436..73132177677 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,4 +1,11 @@
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.
+
+2004-09-02 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/16848
* include/Makefile.am (ext_headers): Remove demangle.h.
diff --git a/libstdc++-v3/include/ext/ropeimpl.h b/libstdc++-v3/include/ext/ropeimpl.h
index 7463196c0e9..51877699cb5 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,
OpenPOWER on IntegriCloud