+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
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>
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);