From: Jonathan Wakely Date: Wed, 15 May 2013 22:34:22 +0000 (+0000) Subject: * include/bits/basic_string.h (getline): Fix doxygen comments. X-Git-Tag: releases/gcc-4.7.4~661 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53a399e36a1ae88f448540b6b4140d6f2aa701aa;p=thirdparty%2Fgcc.git * include/bits/basic_string.h (getline): Fix doxygen comments. From-SVN: r198952 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bc535540c395..bde4f5bf50d8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2013-05-15 Jonathan Wakely + + * include/bits/basic_string.h (getline): Fix doxygen comments. + 2013-05-14 Evgeniy Stepanov * src/c++11/system_error.cc (generic_category_instance): Add diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h index 169daf586138..d4d35e8d822d 100644 --- a/libstdc++-v3/include/bits/basic_string.h +++ b/libstdc++-v3/include/bits/basic_string.h @@ -2764,10 +2764,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * * Stores characters from @a __is into @a __str until @a __delim is * 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 - * number of characters stored into @a __str. Any previous - * contents of @a __str are erased. If @a __delim was encountered, - * it is extracted but not stored into @a __str. + * is reached. Any previous contents of @a __str are erased. If + * @a __delim is encountered, it is extracted but not stored into + * @a __str. */ template basic_istream<_CharT, _Traits>& @@ -2782,10 +2781,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * * Stores characters from is into @a __str until '\n' is * 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 number of characters stored into @a __str. Any previous - * contents of @a __str are erased. If end of line was - * encountered, it is extracted but not stored into @a __str. + * is reached. Any previous contents of @a __str are erased. If + * end of line is encountered, it is extracted but not stored into + * @a __str. */ template inline basic_istream<_CharT, _Traits>&