aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Carlini <pcarlini@unitus.it>2003-04-21 20:46:44 +0200
committerPaolo Carlini <paolo@gcc.gnu.org>2003-04-21 18:46:44 +0000
commit65085aa3eff4cbaf515a4fcbb16d2692ecb1ab74 (patch)
treeea5bd4f2a7052ab6af222b44e0a37dd84a5a6f41
parentdfd39a2e363b22a0e59883cf38728aaed0e3aef1 (diff)
downloadgcc-65085aa3eff4cbaf515a4fcbb16d2692ecb1ab74.zip
gcc-65085aa3eff4cbaf515a4fcbb16d2692ecb1ab74.tar.gz
gcc-65085aa3eff4cbaf515a4fcbb16d2692ecb1ab74.tar.bz2
sstream.tcc (pbackfail, overflow): Formatting fixes.
2003-04-21 Paolo Carlini <pcarlini@unitus.it> * include/bits/sstream.tcc (pbackfail, overflow): Formatting fixes. From-SVN: r65893
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/sstream.tcc8
2 files changed, 9 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 5b18668..e4f65c8 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,10 @@
2003-04-21 Paolo Carlini <pcarlini@unitus.it>
+ * include/bits/sstream.tcc (pbackfail, overflow):
+ Formatting fixes.
+
+2003-04-21 Paolo Carlini <pcarlini@unitus.it>
+
* include/std/std_streambuf.h (uflow()): It's used only by
basic_stringbuf (i.e., basic_filebuf provide its own uflow()),
therefore do not consider the _M_buf_unified == true case.
diff --git a/libstdc++-v3/include/bits/sstream.tcc b/libstdc++-v3/include/bits/sstream.tcc
index 9160b5a..e8bf8ee 100644
--- a/libstdc++-v3/include/bits/sstream.tcc
+++ b/libstdc++-v3/include/bits/sstream.tcc
@@ -47,8 +47,8 @@ namespace std
pbackfail(int_type __c)
{
int_type __ret = traits_type::eof();
- const bool __testeof =
- traits_type::eq_int_type(__c, traits_type::eof());
+ const bool __testeof = traits_type::eq_int_type(__c,
+ traits_type::eof());
const bool __testpos = this->_M_in_beg < this->_M_in_cur;
// Try to put back __c into input sequence in one of three ways.
@@ -85,8 +85,8 @@ namespace std
if (__builtin_expect(!__testout, false))
return traits_type::eof();
- const bool __testeof =
- traits_type::eq_int_type(__c, traits_type::eof());
+ const bool __testeof = traits_type::eq_int_type(__c,
+ traits_type::eof());
if (__builtin_expect(__testeof, false))
return traits_type::not_eof(__c);