]> 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>
Tue, 3 Dec 2002 16:13:03 +0000 (16:13 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Tue, 3 Dec 2002 16:13:03 +0000 (16:13 +0000)
2002-12-03  Phil Edwards  <pme@gcc.gnu.org>

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

From-SVN: r59774

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

index 9e0bb10f8a6bbc80ea543e1c6ad684ad2ae6ac9c..118e0b73f53bcd440c6f0c8d81e050243e287169 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-03  Phil Edwards  <pme@gcc.gnu.org>
+
+       * include/bits/streambuf.tcc (basic_streambuf::sputbackc):  Prefix
+       "this->" to call to pbackfail.
+
 2002-12-02  Benjamin Kosnik  <bkoz@redhat.com>
             Jonathan Lennox  <lennox@cs.columbia.edu>
 
 
        * GCC 3.2.1 Released.
 
-2002-11-19  Release Manager
-
-       * GCC 3.2.1 Released.
-
-2002-11-18  Release Manager
-
-       * GCC 3.2.1 Released.
-
 2002-11-17  Jakub Jelinek  <jakub@redhat.com>
 
        * config/linker-map.gnu: Export _S_construct even if size_t is
@@ -93,7 +90,7 @@
        
 2002-11-06  David Edelsohn  <edelsohn@gnu.org>
 
-       PR 8362
+       PR libstdc++/8362
        * testsuite/abi_check.cc: Add guards to prevent -mpower ICE.
 
 2002-11-05  Jonathan Wakely  <cow@compsoc.man.ac.uk>
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);