From: pme Date: Wed, 23 Apr 2003 07:21:27 +0000 (+0000) Subject: Missed tellg() comment from previous checkin somehow. X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=00ae74e944cdee3a1724fdd1f0f180a598101002;hp=5f980fdac4e5fe054d383c053332b95a072b54e2;p=pf3gnuchains%2Fgcc-fork.git Missed tellg() comment from previous checkin somehow. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65984 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/include/bits/istream.tcc b/libstdc++-v3/include/bits/istream.tcc index 17af6e028cd..cc83f81a923 100644 --- a/libstdc++-v3/include/bits/istream.tcc +++ b/libstdc++-v3/include/bits/istream.tcc @@ -942,6 +942,7 @@ namespace std basic_istream<_CharT, _Traits>:: tellg(void) { + // DR60. Do not change _M_gcount. pos_type __ret = pos_type(-1); if (!this->fail()) __ret = this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::in);