]> granicus.if.org Git - clang/commitdiff
ASTMatchers.h: Fix an annotation. [-Wdocumentation-html]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 5 Aug 2014 15:01:31 +0000 (15:01 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 5 Aug 2014 15:01:31 +0000 (15:01 +0000)
Angle brackets, aka &lt; &gt;, should be escaped.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214870 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index 30550e0b06bd06682e0b7920e401638a9b83f6d4..fc15454c45223316990cef641ec9bf18a99eb7fd 100644 (file)
@@ -3647,7 +3647,7 @@ AST_MATCHER_P(CaseStmt, hasCaseConstant, internal::Matcher<Expr>,
 
 /// \brief Matches CUDA kernel call expression.
 ///
-/// Example matches kernel<<<i,j>>>()
+/// Example matches,
 /// \code
 ///   kernel<<<i,j>>>();
 /// \endcode