diff options
| author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-09 04:49:49 +0000 |
|---|---|---|
| committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-09 04:49:49 +0000 |
| commit | 8b0c169abe306c751f4ad08053c4826a52da0334 (patch) | |
| tree | fbea89e38d7c0d2261c5e2f386f0bda2f19d55c2 /libstdc++-v3/include/std/istream | |
| parent | 595b88e8b3019889934c7a4c46b3d471216c2bb0 (diff) | |
| download | ppe42-gcc-8b0c169abe306c751f4ad08053c4826a52da0334.tar.gz ppe42-gcc-8b0c169abe306c751f4ad08053c4826a52da0334.zip | |
2010-02-08 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/42460
* include/tr1_impl/regex: Fix quoting issues in doxygen markup.
* include/bits/random.h: Fix multi-line doxygen function markup.
2010-02-08 Matthias Klose <doko@debian.org>
PR libstdc++/42460
* include/std/istream: Fix '\' quoting in doxygen markup.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156617 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/istream')
| -rw-r--r-- | libstdc++-v3/include/std/istream | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/std/istream b/libstdc++-v3/include/std/istream index f97e1fec0e1..542396b123a 100644 --- a/libstdc++-v3/include/std/istream +++ b/libstdc++-v3/include/std/istream @@ -327,7 +327,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * @param n Maximum number of characters to store in @a s. * @return *this * - * Returns @c get(s,n,widen('\n')). + * Returns @c get(s,n,widen('\\n')). */ __istream_type& get(char_type* __s, streamsize __n) @@ -360,7 +360,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * @param sb A streambuf in which to store data. * @return *this * - * Returns @c get(sb,widen('\n')). + * Returns @c get(sb,widen('\\n')). */ __istream_type& get(__streambuf_type& __sb) @@ -400,7 +400,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * @param n Maximum number of characters to extract. * @return *this * - * Returns @c getline(s,n,widen('\n')). + * Returns @c getline(s,n,widen('\\n')). */ __istream_type& getline(char_type* __s, streamsize __n) |

