std_fstream.h (_M_set_buffer): Fix indentation.
authorPaolo Carlini <pcarlini@unitus.it>
Wed, 21 May 2003 20:22:25 +0000 (22:22 +0200)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 21 May 2003 20:22:25 +0000 (20:22 +0000)
2003-05-21  Paolo Carlini  <pcarlini@unitus.it>

* include/std/std_fstream.h (_M_set_buffer): Fix indentation.

From-SVN: r67065

libstdc++-v3/ChangeLog
libstdc++-v3/include/std/std_fstream.h

index 2325eed89f150c410c5dfa8accb23f594ed7beff..3a3ac682ab6a372fd681847e5d1ab0557af1e834 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-21  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/std/std_fstream.h (_M_set_buffer): Fix indentation.
+
 2003-05-21  Jonathan Wakely  <redi@gcc.gnu.org>
 
        * docs/html/faq/index.html: Fix typo.
index e99d8103286f735d0656cf2668dd178b1197800b..24c9f7fc6db98fe2af13cdb359c8946f24125151 100644 (file)
@@ -454,16 +454,16 @@ namespace std
       void
       _M_output_unshift();
 
-       // This function sets the pointers of the internal buffer, both get
-       // and put areas. Typically, __off == _M_in_end - _M_in_beg upon
-       // _M_underflow; __off == 0 upon _M_overflow, seekoff, open, setbuf.
-       // 
-       // NB: _M_out_end - _M_out_beg == _M_buf_size - 1, since _M_buf_size
-       // reflects the actual allocated memory and the last cell is reserved
-       // for the overflow char of a full put area.
-       void
-       _M_set_buffer(streamsize __off)
-       {
+      // This function sets the pointers of the internal buffer, both get
+      // and put areas. Typically, __off == _M_in_end - _M_in_beg upon
+      // _M_underflow; __off == 0 upon _M_overflow, seekoff, open, setbuf.
+      // 
+      // NB: _M_out_end - _M_out_beg == _M_buf_size - 1, since _M_buf_size
+      // reflects the actual allocated memory and the last cell is reserved
+      // for the overflow char of a full put area.
+      void
+      _M_set_buffer(streamsize __off)
+      {
        const bool __testin = this->_M_mode & ios_base::in;
        const bool __testout = this->_M_mode & ios_base::out;
        if (_M_buf_size)
@@ -477,7 +477,7 @@ namespace std
              }
            _M_filepos = this->_M_buf + __off;
          }
-       }
+      }
     };
 
   // [27.8.1.5] Template class basic_ifstream