diff options
Diffstat (limited to 'libstdc++-v3/include/std/streambuf')
-rw-r--r-- | libstdc++-v3/include/std/streambuf | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libstdc++-v3/include/std/streambuf b/libstdc++-v3/include/std/streambuf index ae2eaa3..e213104 100644 --- a/libstdc++-v3/include/std/streambuf +++ b/libstdc++-v3/include/std/streambuf @@ -122,7 +122,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION class basic_streambuf { public: - //@{ + ///@{ /** * These are standard types. They permit a standardized way of * referring to names of (or names dependent on) the template @@ -133,12 +133,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION typedef typename traits_type::int_type int_type; typedef typename traits_type::pos_type pos_type; typedef typename traits_type::off_type off_type; - //@} + ///@} - //@{ + ///@{ /// This is a non-standard type. typedef basic_streambuf<char_type, traits_type> __streambuf_type; - //@} + ///@} friend class basic_ios<char_type, traits_type>; friend class basic_istream<char_type, traits_type>; @@ -232,7 +232,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { return _M_buf_locale; } // [27.5.2.2.2] buffer management and positioning - //@{ + ///@{ /** * @brief Entry points for derived buffer functions. * @@ -274,7 +274,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION */ int pubsync() { return this->sync(); } - //@} + ///@} // [27.5.2.2.3] get area /** @@ -472,7 +472,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { } // [27.5.2.3.1] get area access - //@{ + ///@{ /** * @brief Access to the get area. * @@ -491,7 +491,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION char_type* egptr() const { return _M_in_end; } - //@} + ///@} /** * @brief Moving the read position. @@ -519,7 +519,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } // [27.5.2.3.2] put area access - //@{ + ///@{ /** * @brief Access to the put area. * @@ -538,7 +538,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION char_type* epptr() const { return _M_out_end; } - //@} + ///@} /** * @brief Moving the write position. |