Missed tellg() comment from previous checkin somehow.
authorPhil Edwards <pme@gcc.gnu.org>
Wed, 23 Apr 2003 07:21:27 +0000 (07:21 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Wed, 23 Apr 2003 07:21:27 +0000 (07:21 +0000)
From-SVN: r65984

libstdc++-v3/include/bits/istream.tcc

index 17af6e028cd36bd08004fe3e990e369c9ca85da8..cc83f81a9237b272d0032c69000ee1daed2dd7c1 100644 (file)
@@ -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);