2012-11-20 Matthias Klose <doko@ubuntu.com>
authorMatthias Klose <doko@ubuntu.com>
Tue, 20 Nov 2012 13:48:28 +0000 (13:48 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Tue, 20 Nov 2012 13:48:28 +0000 (13:48 +0000)
        * 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

libstdc++-v3/ChangeLog
libstdc++-v3/doc/doxygen/user.cfg.in
libstdc++-v3/include/bits/allocator.h
libstdc++-v3/include/profile/impl/profiler_algos.h

index 3ced7cf421ef237ea8542eb864c78dc8a909c20c..58616cdd01c135d0530737dd51321847b5e405d3 100644 (file)
@@ -1,3 +1,9 @@
+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>
 
        * include/ext/array_allocator.h: Replace uses of
index 9d2ab05c4c6d31e17df6cf38d4becd22bf92fb50..5af636bfe9275d7cf5dae508ca11af97d7f993a9 100644 (file)
@@ -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
index 5ccb49188485b206fc12bca3e524e029f5f5f55a..4bfabac0ced3e6a316a7f82d45291b5b08b5a60b 100644 (file)
@@ -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;
 
index 977afaa800c8d3e88fbf87c21fa37157c31285fd..1be8b61be8b73fd4f35b48120767d68284d5793e 100644 (file)
@@ -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.