summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2009-03-11 15:16:21 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2009-03-11 15:16:21 +0000
commit5df9ac4b3966bb8c78b41c1130edfb2679b02d41 (patch)
tree2d921e38a28a1166773bf7645ae6ee979343eabb
parent6d401294731cea0c5a98f14d3d03637c52acb42b (diff)
downloadgcc-5df9ac4b3966bb8c78b41c1130edfb2679b02d41.tar.gz
iostream: Fix doxygen link.
2009-03-11 Jonathan Wakely <jwakely.gcc@gmail.com> * include/std/iostream: Fix doxygen link. * include/bits/forward_list.h: Fix doxygen markup. * include/ext/vstring.h: Escape backslash in doxygen comment. * include/bits/basic_string.h: Likewise. From-SVN: r144777
-rw-r--r--libstdc++-v3/ChangeLog7
-rw-r--r--libstdc++-v3/include/bits/basic_string.h4
-rw-r--r--libstdc++-v3/include/bits/forward_list.h6
-rw-r--r--libstdc++-v3/include/ext/vstring.h4
-rw-r--r--libstdc++-v3/include/std/iostream2
5 files changed, 15 insertions, 8 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 77791f3ab7f..b7e68d812a9 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,10 @@
+2009-03-11 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ * include/std/iostream: Fix doxygen link.
+ * include/bits/forward_list.h: Fix doxygen markup.
+ * include/ext/vstring.h: Escape backslash in doxygen comment.
+ * include/bits/basic_string.h: Likewise.
+
2009-03-10 Paolo Carlini <paolo.carlini@oracle.com>
* doc/xml/faq.xml: Fix links to implementation status pages.
diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h
index 2a49837029d..a5861d954b3 100644
--- a/libstdc++-v3/include/bits/basic_string.h
+++ b/libstdc++-v3/include/bits/basic_string.h
@@ -458,7 +458,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* @param n Number of characters to copy.
* @param a Allocator to use (default is default allocator).
*
- * NB: @a s must have at least @a n characters, '\0' has no special
+ * NB: @a s must have at least @a n characters, '\\0' has no special
* meaning.
*/
basic_string(const _CharT* __s, size_type __n,
@@ -2140,7 +2140,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* result of the comparison is nonzero returns it, otherwise the shorter
* one is ordered first.
*
- * NB: s must have at least n2 characters, '\0' has no special
+ * NB: s must have at least n2 characters, '\\0' has no special
* meaning.
*/
int
diff --git a/libstdc++-v3/include/bits/forward_list.h b/libstdc++-v3/include/bits/forward_list.h
index 89ced313fe5..55029c9647a 100644
--- a/libstdc++-v3/include/bits/forward_list.h
+++ b/libstdc++-v3/include/bits/forward_list.h
@@ -50,7 +50,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
using __gnu_cxx::__const_pointer_cast;
/**
- * @brief A helper basic node class for @forward_list.
+ * @brief A helper basic node class for %forward_list.
* This is just a linked list with nothing inside it.
* There are purely list shuffling utility methods here.
*/
@@ -111,7 +111,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
};
/**
- * @brief A helper node class for @forward_list.
+ * @brief A helper node class for %forward_list.
* This is just a linked list with a data value in each node.
* There is a sorting utility method.
*/
@@ -290,7 +290,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
{ return __x._M_node != __y._M_node; }
/**
- * @brief Base class for @forward_list.
+ * @brief Base class for %forward_list.
*/
template<typename _Tp, typename _Alloc = allocator<_Tp> >
struct _Fwd_list_base
diff --git a/libstdc++-v3/include/ext/vstring.h b/libstdc++-v3/include/ext/vstring.h
index cea0f0a4fb2..3ca81771b54 100644
--- a/libstdc++-v3/include/ext/vstring.h
+++ b/libstdc++-v3/include/ext/vstring.h
@@ -204,7 +204,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
* @param __n Number of characters to copy.
* @param __a Allocator to use (default is default allocator).
*
- * NB: @a __s must have at least @a __n characters, '\0' has no special
+ * NB: @a __s must have at least @a __n characters, '\\0' has no special
* meaning.
*/
__versa_string(const _CharT* __s, size_type __n,
@@ -2006,7 +2006,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
* the comparison is nonzero returns it, otherwise the shorter
* one is ordered first.
*
- * NB: s must have at least n2 characters, '\0' has no special
+ * NB: s must have at least n2 characters, '\\0' has no special
* meaning.
*/
int
diff --git a/libstdc++-v3/include/std/iostream b/libstdc++-v3/include/std/iostream
index 5f2f23f1df0..4b702f7daef 100644
--- a/libstdc++-v3/include/std/iostream
+++ b/libstdc++-v3/include/std/iostream
@@ -53,7 +53,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* The &lt;iostream&gt; header declares the eight <em>standard stream
* objects</em>. For other declarations, see
* http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch24.html
- * and the @link s27_2_iosfwd I/O forward declarations @endlink
+ * and the @link iosfwd I/O forward declarations @endlink
*
* They are required by default to cooperate with the global C library's
* @c FILE streams, and to be available during program startup and