r262138 - Workaround doxygen bug https://bugzilla.gnome.org/show_bug.cgi?id=506243
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Sat Feb 27 06:02:09 PST 2016
Author: alexfh
Date: Sat Feb 27 08:02:08 2016
New Revision: 262138
URL: http://llvm.org/viewvc/llvm-project?rev=262138&view=rev
Log:
Workaround doxygen bug https://bugzilla.gnome.org/show_bug.cgi?id=506243
Modified:
cfe/trunk/docs/ClangFormatStyleOptions.rst
cfe/trunk/include/clang/Format/Format.h
Modified: cfe/trunk/docs/ClangFormatStyleOptions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangFormatStyleOptions.rst?rev=262138&r1=262137&r2=262138&view=diff
==============================================================================
--- cfe/trunk/docs/ClangFormatStyleOptions.rst (original)
+++ cfe/trunk/docs/ClangFormatStyleOptions.rst Sat Feb 27 08:02:08 2016
@@ -671,7 +671,7 @@ the configuration (without a prefix: ``A
The number of spaces before trailing line comments
(``//`` - comments).
- This does not affect trailing block comments (``/**/`` - comments) as
+ This does not affect trailing block comments (``/*`` - comments) as
those commonly have different usage patterns and a number of special
cases.
Modified: cfe/trunk/include/clang/Format/Format.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Format/Format.h?rev=262138&r1=262137&r2=262138&view=diff
==============================================================================
--- cfe/trunk/include/clang/Format/Format.h (original)
+++ cfe/trunk/include/clang/Format/Format.h Sat Feb 27 08:02:08 2016
@@ -541,7 +541,7 @@ struct FormatStyle {
/// \brief The number of spaces before trailing line comments
/// (``//`` - comments).
///
- /// This does not affect trailing block comments (``/**/`` - comments) as
+ /// This does not affect trailing block comments (``/*`` - comments) as
/// those commonly have different usage patterns and a number of special
/// cases.
unsigned SpacesBeforeTrailingComments;
More information about the cfe-commits
mailing list