aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Edwards <pme@gcc.gnu.org>2003-04-23 07:21:27 +0000
committerPhil Edwards <pme@gcc.gnu.org>2003-04-23 07:21:27 +0000
commitd8c3061141850f24406d79172265410ce93fe2e3 (patch)
treec79485c7cd5301fb1414a2fd3b996843c2e0ed7f
parent6894ddcf3d2b95e6d973e34c2f2fe03d9abd4419 (diff)
downloadgcc-d8c3061141850f24406d79172265410ce93fe2e3.zip
gcc-d8c3061141850f24406d79172265410ce93fe2e3.tar.gz
gcc-d8c3061141850f24406d79172265410ce93fe2e3.tar.bz2
Missed tellg() comment from previous checkin somehow.
From-SVN: r65984
-rw-r--r--libstdc++-v3/include/bits/istream.tcc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libstdc++-v3/include/bits/istream.tcc b/libstdc++-v3/include/bits/istream.tcc
index 17af6e0..cc83f81 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);