Commit 3b2453a9 by Jonathan Wakely Committed by Jonathan Wakely

* include/bits/basic_string.h (getline): Fix doxygen comments.

From-SVN: r198920
parent fdf6a7b9
2013-05-15 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/bits/basic_string.h (getline): Fix doxygen comments.
2013-05-14 Paolo Carlini <paolo.carlini@oracle.com> 2013-05-14 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/stl_iterator.h (__normal_iterator<>::_M_const_cast): * include/bits/stl_iterator.h (__normal_iterator<>::_M_const_cast):
......
...@@ -2767,10 +2767,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -2767,10 +2767,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* *
* Stores characters from @a __is into @a __str until @a __delim is * Stores characters from @a __is into @a __str until @a __delim is
* found, the end of the stream is encountered, or str.max_size() * found, the end of the stream is encountered, or str.max_size()
* is reached. If is.width() is non-zero, that is the limit on the * is reached. Any previous contents of @a __str are erased. If
* number of characters stored into @a __str. Any previous * @a __delim is encountered, it is extracted but not stored into
* contents of @a __str are erased. If @a __delim was encountered, * @a __str.
* it is extracted but not stored into @a __str.
*/ */
template<typename _CharT, typename _Traits, typename _Alloc> template<typename _CharT, typename _Traits, typename _Alloc>
basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>&
...@@ -2785,10 +2784,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -2785,10 +2784,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* *
* Stores characters from is into @a __str until &apos;\n&apos; is * Stores characters from is into @a __str until &apos;\n&apos; is
* found, the end of the stream is encountered, or str.max_size() * found, the end of the stream is encountered, or str.max_size()
* is reached. If __is.width() is non-zero, that is the limit on * is reached. Any previous contents of @a __str are erased. If
* the number of characters stored into @a __str. Any previous * end of line is encountered, it is extracted but not stored into
* contents of @a __str are erased. If end of line was * @a __str.
* encountered, it is extracted but not stored into @a __str.
*/ */
template<typename _CharT, typename _Traits, typename _Alloc> template<typename _CharT, typename _Traits, typename _Alloc>
inline basic_istream<_CharT, _Traits>& inline basic_istream<_CharT, _Traits>&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment