aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Carlini <pcarlini@unitus.it>2003-04-21 23:44:44 +0200
committerPaolo Carlini <paolo@gcc.gnu.org>2003-04-21 21:44:44 +0000
commit07c2b60df9e41bcb144a0d0d048f6044f8a36754 (patch)
tree712fb1d95e06ab7ade2c9c54c8dae5d8908fb9d4
parent63f60ecb140af7ca96f4971ab2e190a3d3d6e389 (diff)
downloadgcc-07c2b60df9e41bcb144a0d0d048f6044f8a36754.zip
gcc-07c2b60df9e41bcb144a0d0d048f6044f8a36754.tar.gz
gcc-07c2b60df9e41bcb144a0d0d048f6044f8a36754.tar.bz2
Consistently use _M_in_beg instead of eback(), _M_in_cur instead of gptr(), and so on.
2003-04-21 Paolo Carlini <pcarlini@unitus.it> Consistently use _M_in_beg instead of eback(), _M_in_cur instead of gptr(), and so on. * include/bits/fstream.tcc (pbackfail, imbue): Here. * include/bits/sstream.tcc (pbackfail, seekoff, seekpos): Ditto. * include/bits/streambuf.tcc (sbumpc, sputbackc, __copy_streambufs): Ditto. * include/std/std_streambuf.h (sgetc): Ditto. From-SVN: r65909
-rw-r--r--libstdc++-v3/ChangeLog10
-rw-r--r--libstdc++-v3/include/bits/fstream.tcc5
-rw-r--r--libstdc++-v3/include/bits/sstream.tcc19
-rw-r--r--libstdc++-v3/include/bits/streambuf.tcc12
-rw-r--r--libstdc++-v3/include/std/std_streambuf.h2
5 files changed, 30 insertions, 18 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index e4f65c8..de76c79 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,15 @@
2003-04-21 Paolo Carlini <pcarlini@unitus.it>
+ Consistently use _M_in_beg instead of eback(), _M_in_cur
+ instead of gptr(), and so on.
+ * include/bits/fstream.tcc (pbackfail, imbue): Here.
+ * include/bits/sstream.tcc (pbackfail, seekoff, seekpos): Ditto.
+ * include/bits/streambuf.tcc (sbumpc, sputbackc,
+ __copy_streambufs): Ditto.
+ * include/std/std_streambuf.h (sgetc): Ditto.
+
+2003-04-21 Paolo Carlini <pcarlini@unitus.it>
+
* include/bits/sstream.tcc (pbackfail, overflow):
Formatting fixes.
diff --git a/libstdc++-v3/include/bits/fstream.tcc b/libstdc++-v3/include/bits/fstream.tcc
index a3dacca..fc8ca7a 100644
--- a/libstdc++-v3/include/bits/fstream.tcc
+++ b/libstdc++-v3/include/bits/fstream.tcc
@@ -189,7 +189,7 @@ namespace std
if (__testpb)
{
const bool __testout = this->_M_mode & ios_base::out;
- const bool __testeq = traits_type::eq(__c, this->gptr()[-1]);
+ const bool __testeq = traits_type::eq(__c, this->_M_in_cur[-1]);
// Try to put back __c into input sequence in one of three ways.
// Order these tests done in is unspecified by the standard.
@@ -520,7 +520,8 @@ namespace std
basic_filebuf<_CharT, _Traits>::
imbue(const locale& __loc)
{
- const bool __testbeg = gptr() == eback() && pptr() == pbase();
+ const bool __testbeg = this->_M_in_cur == this->_M_in_beg
+ && this->_M_out_cur == this->_M_out_beg;
if (__testbeg && this->_M_buf_locale != __loc)
this->_M_buf_locale = __loc;
diff --git a/libstdc++-v3/include/bits/sstream.tcc b/libstdc++-v3/include/bits/sstream.tcc
index e8bf8ee..a138d25 100644
--- a/libstdc++-v3/include/bits/sstream.tcc
+++ b/libstdc++-v3/include/bits/sstream.tcc
@@ -55,7 +55,8 @@ namespace std
// Order these tests done in is unspecified by the standard.
if (__testpos)
{
- if (traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1])
+ if (traits_type::eq(traits_type::to_char_type(__c),
+ this->_M_in_cur[-1])
&& !__testeof)
{
--this->_M_in_cur;
@@ -139,14 +140,14 @@ namespace std
if (__testin || __testboth)
{
- __curi = this->gptr();
- __endi = this->egptr();
+ __curi = this->_M_in_cur;
+ __endi = this->_M_in_end;
}
if (__testout || __testboth)
{
- __curo = this->pptr();
+ __curo = this->_M_out_cur;
// Due to the resolution of DR169, ios_base::end
- // is this->_M_out_lim, not epptr().
+ // is this->_M_out_lim, not _M_out_end.
__endo = this->_M_out_lim;
}
@@ -199,15 +200,15 @@ namespace std
bool __testposo = false;
if (__testin)
{
- __beg = this->eback();
- __end = this->egptr();
+ __beg = this->_M_in_beg;
+ __end = this->_M_in_end;
if (0 <= __pos && __pos <= __end - __beg)
__testposi = true;
}
if (__testout)
{
- __beg = this->pbase();
- __end = this->epptr();
+ __beg = this->_M_out_beg;
+ __end = this->_M_out_end;
if (0 <= __pos && __pos <= __end - __beg)
__testposo = true;
}
diff --git a/libstdc++-v3/include/bits/streambuf.tcc b/libstdc++-v3/include/bits/streambuf.tcc
index 09dd14c..06e2f50 100644
--- a/libstdc++-v3/include/bits/streambuf.tcc
+++ b/libstdc++-v3/include/bits/streambuf.tcc
@@ -51,7 +51,7 @@ namespace std
int_type __ret;
if (_M_in_cur < _M_in_end)
{
- char_type __c = *(this->gptr());
+ char_type __c = *this->_M_in_cur;
_M_in_cur_move(1);
__ret = traits_type::to_int_type(__c);
}
@@ -67,12 +67,12 @@ namespace std
{
int_type __ret;
const bool __testpos = _M_in_beg < _M_in_cur;
- if (!__testpos || !traits_type::eq(__c, this->gptr()[-1]))
+ if (!__testpos || !traits_type::eq(__c, this->_M_in_cur[-1]))
__ret = this->pbackfail(traits_type::to_int_type(__c));
else
{
_M_in_cur_move(-1);
- __ret = traits_type::to_int_type(*this->gptr());
+ __ret = traits_type::to_int_type(*this->_M_in_cur);
}
return __ret;
}
@@ -201,10 +201,10 @@ namespace std
{
while (__in_avail != -1)
{
- if (__in_avail != 0 && __sbin->gptr()
- && __sbin->gptr() + __in_avail <= __sbin->egptr())
+ if (__in_avail != 0 && __sbin->_M_in_cur
+ && __sbin->_M_in_cur + __in_avail <= __sbin->_M_in_end)
{
- __xtrct = __sbout->sputn(__sbin->gptr(), __in_avail);
+ __xtrct = __sbout->sputn(__sbin->_M_in_cur, __in_avail);
__ret += __xtrct;
__sbin->_M_in_cur_move(__xtrct);
if (__xtrct != __in_avail)
diff --git a/libstdc++-v3/include/std/std_streambuf.h b/libstdc++-v3/include/std/std_streambuf.h
index ded94a4..5409b75 100644
--- a/libstdc++-v3/include/std/std_streambuf.h
+++ b/libstdc++-v3/include/std/std_streambuf.h
@@ -453,7 +453,7 @@ namespace std
{
int_type __ret;
if (_M_in_cur < _M_in_end)
- __ret = traits_type::to_int_type(*(this->gptr()));
+ __ret = traits_type::to_int_type(*this->_M_in_cur);
else
__ret = this->underflow();
return __ret;