Commit 5df9ac4b by Jonathan Wakely Committed by Jonathan Wakely

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
parent 6d401294
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> 2009-03-10 Paolo Carlini <paolo.carlini@oracle.com>
* doc/xml/faq.xml: Fix links to implementation status pages. * doc/xml/faq.xml: Fix links to implementation status pages.
......
...@@ -458,7 +458,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -458,7 +458,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* @param n Number of characters to copy. * @param n Number of characters to copy.
* @param a Allocator to use (default is default allocator). * @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. * meaning.
*/ */
basic_string(const _CharT* __s, size_type __n, basic_string(const _CharT* __s, size_type __n,
...@@ -2140,7 +2140,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -2140,7 +2140,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* result of the comparison is nonzero returns it, otherwise the shorter * result of the comparison is nonzero returns it, otherwise the shorter
* one is ordered first. * 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. * meaning.
*/ */
int int
......
...@@ -50,7 +50,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -50,7 +50,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
using __gnu_cxx::__const_pointer_cast; 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. * This is just a linked list with nothing inside it.
* There are purely list shuffling utility methods here. * There are purely list shuffling utility methods here.
*/ */
...@@ -111,7 +111,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -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. * This is just a linked list with a data value in each node.
* There is a sorting utility method. * There is a sorting utility method.
*/ */
...@@ -290,7 +290,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -290,7 +290,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
{ return __x._M_node != __y._M_node; } { 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> > template<typename _Tp, typename _Alloc = allocator<_Tp> >
struct _Fwd_list_base struct _Fwd_list_base
......
...@@ -204,7 +204,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) ...@@ -204,7 +204,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
* @param __n Number of characters to copy. * @param __n Number of characters to copy.
* @param __a Allocator to use (default is default allocator). * @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. * meaning.
*/ */
__versa_string(const _CharT* __s, size_type __n, __versa_string(const _CharT* __s, size_type __n,
...@@ -2006,7 +2006,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) ...@@ -2006,7 +2006,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
* the comparison is nonzero returns it, otherwise the shorter * the comparison is nonzero returns it, otherwise the shorter
* one is ordered first. * 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. * meaning.
*/ */
int int
......
...@@ -53,7 +53,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -53,7 +53,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* The &lt;iostream&gt; header declares the eight <em>standard stream * The &lt;iostream&gt; header declares the eight <em>standard stream
* objects</em>. For other declarations, see * objects</em>. For other declarations, see
* http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch24.html * 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 * They are required by default to cooperate with the global C library's
* @c FILE streams, and to be available during program startup and * @c FILE streams, and to be available during program startup and
......
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