Commit 3263c9a3 by Matthias Klose Committed by Matthias Klose

2012-11-20 Matthias Klose <doko@ubuntu.com>

        * doc/doxygen/user.cfg.in (ALIASES). Escape sharp braces.
        * include/bits/allocator.h: Escape sharp braces in comment.
        * include/profile/impl/profiler_algos.h: Likewise.

From-SVN: r193662
parent b84d824d
2012-11-20 Matthias Klose <doko@ubuntu.com>
* doc/doxygen/user.cfg.in (ALIASES). Escape sharp braces.
* include/bits/allocator.h: Escape sharp braces in comment.
* include/profile/impl/profiler_algos.h: Likewise.
2012-11-20 Jonathan Wakely <jwakely.gcc@gmail.com> 2012-11-20 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/ext/array_allocator.h: Replace uses of * include/ext/array_allocator.h: Replace uses of
......
...@@ -196,8 +196,8 @@ TAB_SIZE = 4 ...@@ -196,8 +196,8 @@ TAB_SIZE = 4
# You can put \n's in the value part of an alias to insert newlines. # You can put \n's in the value part of an alias to insert newlines.
ALIASES = "doctodo=@todo\nNeeds documentation! See http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html" \ ALIASES = "doctodo=@todo\nNeeds documentation! See http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html" \
"headername{1}=Instead, include <\1>." \ "headername{1}=Instead, include \<\1\>." \
"headername{2}=Instead, include <\1> or <\2>." "headername{2}=Instead, include \<\1\> or \<\2\>."
# This tag can be used to specify a number of word-keyword mappings (TCL only). # This tag can be used to specify a number of word-keyword mappings (TCL only).
# A mapping has the form "name=value". For example adding # A mapping has the form "name=value". For example adding
......
...@@ -150,7 +150,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -150,7 +150,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
operator!=(const allocator<_Tp>&, const allocator<_Tp>&) operator!=(const allocator<_Tp>&, const allocator<_Tp>&)
{ return false; } { return false; }
/// Declare uses_allocator so it can be specialized in <queue> etc. /// Declare uses_allocator so it can be specialized in \<queue\> etc.
template<typename, typename> template<typename, typename>
struct uses_allocator; struct uses_allocator;
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
/** @file profile/impl/profiler_algos.h /** @file profile/impl/profiler_algos.h
* @brief Algorithms used by the profile extension. * @brief Algorithms used by the profile extension.
* *
* This file is needed to avoid including <algorithm> or <bits/stl_algo.h>. * This file is needed to avoid including \<algorithm\> or \<bits/stl_algo.h\>.
* Including those files would result in recursive includes. * Including those files would result in recursive includes.
* These implementations are oversimplified. In general, efficiency may be * These implementations are oversimplified. In general, efficiency may be
* sacrificed to minimize maintenance overhead. * sacrificed to minimize maintenance overhead.
......
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