]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
streambuf.tcc (basic_streambuf::sputbackc): Prefix "this->" to call to pbackfail.
authorPhil Edwards <pme@gcc.gnu.org>
Thu, 21 Nov 2002 07:27:51 +0000 (07:27 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Thu, 21 Nov 2002 07:27:51 +0000 (07:27 +0000)
2002-11-21  Phil Edwards  <pme@gcc.gnu.org>

* include/bits/streambuf.tcc (basic_streambuf::sputbackc):  Prefix
"this->" to call to pbackfail.

From-SVN: r59327

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

index 7135c13378e6c826b3db5cb2fd5c0322f162bb97..34a62d3e12b14db0c2a878517d734afc43baff42 100644 (file)
@@ -1,3 +1,8 @@
+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.
index a2e0b4b1749518abeb53ca085011c05208e47c6d..5f57df583a7b6bc680f4d94b8abcbf097c5b712a 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);