From 7c15dd79de68799a7454e1e33132bbfe3d540179 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 5 Aug 2014 15:01:31 +0000 Subject: [PATCH] ASTMatchers.h: Fix an annotation. [-Wdocumentation-html] Angle brackets, aka < >, should be escaped. llvm-svn: 214870 --- clang/include/clang/ASTMatchers/ASTMatchers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index 30550e0b06bd..fc15454c4522 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/include/clang/ASTMatchers/ASTMatchers.h @@ -3647,7 +3647,7 @@ AST_MATCHER_P(CaseStmt, hasCaseConstant, internal::Matcher, /// \brief Matches CUDA kernel call expression. /// -/// Example matches kernel<<>>() +/// Example matches, /// \code /// kernel<<>>(); /// \endcode