From: NAKAMURA Takumi Date: Tue, 5 Aug 2014 15:01:31 +0000 (+0000) Subject: ASTMatchers.h: Fix an annotation. [-Wdocumentation-html] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cd7cdd9b1c9354a0dcc34bc24f775fa6c816e35;p=clang ASTMatchers.h: Fix an annotation. [-Wdocumentation-html] Angle brackets, aka < >, should be escaped. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214870 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index 30550e0b06..fc15454c45 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/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