From 9eaa23ed2b9907df518740ebdd020f7d58b74ba6 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 22 Apr 2014 13:28:08 +0000 Subject: [PATCH] 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 --- include/clang/Format/Format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0