From 14d7cf66a173f64ff0a2a082f6a04a09ce0b4353 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 15 Nov 2017 06:53:45 +0000 Subject: [PATCH] ASTMatchers.h: Avoid warnings due to "@throw". [-Wdocumentation] llvm-svn: 318274 --- clang/include/clang/ASTMatchers/ASTMatchers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index 657ce126d463..b91e4bb6b77a 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/include/clang/ASTMatchers/ASTMatchers.h @@ -1265,9 +1265,9 @@ const internal::VariadicDynCastAllOfMatcher< Decl, ObjCPropertyDecl> objcPropertyDecl; -/// \brief Matches Objective-C @throw statements. +/// \brief Matches Objective-C \@throw statements. /// -/// Example matches @throw +/// Example matches \@throw /// \code /// @throw obj; /// \endcode