OSDN Git Service

Missed tellg() comment from previous checkin somehow.
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 23 Apr 2003 07:21:27 +0000 (07:21 +0000)
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 23 Apr 2003 07:21:27 +0000 (07:21 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65984 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 17af6e0..cc83f81 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);