From: NAKAMURA Takumi Date: Tue, 22 Apr 2014 13:28:08 +0000 (+0000) Subject: Try to fix warnings to escape '@' as '\@'. [-Wdocumentation-html] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9eaa23ed2b9907df518740ebdd020f7d58b74ba6;p=clang Try to fix warnings to escape '@' as '\@'. [-Wdocumentation-html] clang/include/clang/Format/Format.h:185:8: error: HTML tag 'tt' requires an end tag [-Werror,-Wdocumentation-html] /// @property (readonly) instead of @property(readonly). ~^~~ git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206893 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Format/Format.h b/include/clang/Format/Format.h index b601615a3f..a48612105e 100644 --- a/include/clang/Format/Format.h +++ b/include/clang/Format/Format.h @@ -182,7 +182,7 @@ struct FormatStyle { ShortFunctionStyle AllowShortFunctionsOnASingleLine; /// \brief Add a space after \c @property in Objective-C, i.e. use - /// @property (readonly) instead of @property(readonly). + /// \@property (readonly) instead of \@property(readonly). bool ObjCSpaceAfterProperty; /// \brief Add a space in front of an Objective-C protocol list, i.e. use