]> granicus.if.org Git - clang/commitdiff
Try to fix warnings to escape '@' as '\@'. [-Wdocumentation-html]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 22 Apr 2014 13:28:08 +0000 (13:28 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 22 Apr 2014 13:28:08 +0000 (13:28 +0000)
  clang/include/clang/Format/Format.h:185:8: error: HTML tag 'tt' requires an end tag [-Werror,-Wdocumentation-html]
    /// <tt>@property (readonly)</tt> instead of <tt>@property(readonly)</tt>.
        ~^~~

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206893 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Format/Format.h

index b601615a3fa9a58b49e2d50272276e8c6f0f92df..a48612105e3b361d0b112c0fd6ccc574d5f115bd 100644 (file)
@@ -182,7 +182,7 @@ struct FormatStyle {
   ShortFunctionStyle AllowShortFunctionsOnASingleLine;
 
   /// \brief Add a space after \c @property in Objective-C, i.e. use
-  /// <tt>@property (readonly)</tt> instead of <tt>@property(readonly)</tt>.
+  /// <tt>\@property (readonly)</tt> instead of <tt>\@property(readonly)</tt>.
   bool ObjCSpaceAfterProperty;
 
   /// \brief Add a space in front of an Objective-C protocol list, i.e. use