sstream.tcc (pbackfail, overflow): Formatting fixes.
authorPaolo Carlini <pcarlini@unitus.it>
Mon, 21 Apr 2003 18:46:44 +0000 (20:46 +0200)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 21 Apr 2003 18:46:44 +0000 (18:46 +0000)
2003-04-21  Paolo Carlini  <pcarlini@unitus.it>

* include/bits/sstream.tcc (pbackfail, overflow):
Formatting fixes.

From-SVN: r65893

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/sstream.tcc

index 5b186682826b425760e3b5089bedfdef3780b397..e4f65c829f168f0749b5237305e6194472aa0978 100644 (file)
@@ -1,3 +1,8 @@
+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
index 9160b5a8a9d64d65336a4dfb534a0fff285a8642..e8bf8eedcb3571f4fa14137119f388b5ada115a2 100644 (file)
@@ -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);