Commit a8a4259d by Phil Edwards

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

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
parent 664ce870
2002-11-21 Phil Edwards <pme@gcc.gnu.org> 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/style.css: Update.
* docs/doxygen/user.cfg.in: Update. * docs/doxygen/user.cfg.in: Update.
* docs/html/documentation.html: Regenerate. * docs/html/documentation.html: Regenerate.
......
...@@ -69,7 +69,7 @@ namespace std ...@@ -69,7 +69,7 @@ namespace std
bool __testpos = _M_in_cur && _M_in_beg < _M_in_cur; bool __testpos = _M_in_cur && _M_in_beg < _M_in_cur;
bool __testne = _M_in_cur && !traits_type::eq(__c, this->gptr()[-1]); bool __testne = _M_in_cur && !traits_type::eq(__c, this->gptr()[-1]);
if (!__testpos || __testne) if (!__testpos || __testne)
__ret = pbackfail(traits_type::to_int_type(__c)); __ret = this->pbackfail(traits_type::to_int_type(__c));
else else
{ {
_M_in_cur_move(-1); _M_in_cur_move(-1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment