From: Alexander Kornienko Date: Sat, 27 Feb 2016 14:02:08 +0000 (+0000) Subject: Workaround doxygen bug https://bugzilla.gnome.org/show_bug.cgi?id=506243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78ee4be80a04290421269958701095c7b4e29f66;p=clang Workaround doxygen bug https://bugzilla.gnome.org/show_bug.cgi?id=506243 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@262138 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ClangFormatStyleOptions.rst b/docs/ClangFormatStyleOptions.rst index c60f299206..f713e3a6d2 100644 --- a/docs/ClangFormatStyleOptions.rst +++ b/docs/ClangFormatStyleOptions.rst @@ -671,7 +671,7 @@ the configuration (without a prefix: ``Auto``). 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. diff --git a/include/clang/Format/Format.h b/include/clang/Format/Format.h index efa3e5c740..b32fc3adbd 100644 --- a/include/clang/Format/Format.h +++ b/include/clang/Format/Format.h @@ -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;