2002-11-21 Phil Edwards <pme@gcc.gnu.org>
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Nov 2002 07:27:51 +0000 (07:27 +0000)
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Nov 2002 07:27:51 +0000 (07:27 +0000)
* include/bits/streambuf.tcc (basic_streambuf::sputbackc):  Prefix
"this->" to call to pbackfail.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59327 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/streambuf.tcc

index 7135c13..34a62d3 100644 (file)
@@ -1,5 +1,10 @@
 2002-11-21  Phil Edwards  <pme@gcc.gnu.org>
 
+       * include/bits/streambuf.tcc (basic_streambuf::sputbackc):  Prefix
+       "this->" to call to pbackfail.
+
+2002-11-21  Phil Edwards  <pme@gcc.gnu.org>
+
        * docs/doxygen/style.css:  Update.
        * docs/doxygen/user.cfg.in:  Update.
        * docs/html/documentation.html:  Regenerate.
index a2e0b4b..5f57df5 100644 (file)
@@ -69,7 +69,7 @@ namespace std
       bool __testpos = _M_in_cur && _M_in_beg < _M_in_cur;
       bool __testne = _M_in_cur && !traits_type::eq(__c, this->gptr()[-1]);
       if (!__testpos || __testne)
-       __ret = pbackfail(traits_type::to_int_type(__c));
+       __ret = this->pbackfail(traits_type::to_int_type(__c));
       else 
        {
          _M_in_cur_move(-1);