Skip to content

Commit

Permalink
2012-11-20 Matthias Klose <[email protected]>
Browse files Browse the repository at this point in the history
        * 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
  • Loading branch information
doko42 authored and Matthias Klose committed Nov 20, 2012
1 parent b84d824 commit 3263c9a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions libstdc++-v3/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2012-11-20 Matthias Klose <[email protected]>

* 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 <[email protected]>

* include/ext/array_allocator.h: Replace uses of
Expand Down
4 changes: 2 additions & 2 deletions libstdc++-v3/doc/doxygen/user.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ TAB_SIZE = 4
# 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" \
"headername{1}=Instead, include <\1>." \
"headername{2}=Instead, include <\1> or <\2>."
"headername{1}=Instead, include \<\1\>." \
"headername{2}=Instead, include \<\1\> or \<\2\>."

# 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
Expand Down
2 changes: 1 addition & 1 deletion libstdc++-v3/include/bits/allocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
operator!=(const allocator<_Tp>&, const allocator<_Tp>&)
{ 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>
struct uses_allocator;

Expand Down
2 changes: 1 addition & 1 deletion libstdc++-v3/include/profile/impl/profiler_algos.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/** @file profile/impl/profiler_algos.h
* @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.
* These implementations are oversimplified. In general, efficiency may be
* sacrificed to minimize maintenance overhead.
Expand Down

0 comments on commit 3263c9a

Please sign in to comment.