ASTMatchers.h: Fix an annotation. [-Wdocumentation-html]

Angle brackets, aka < >, should be escaped.

llvm-svn: 214870
This commit is contained in:
NAKAMURA Takumi 2014-08-05 15:01:31 +00:00
parent 51d35107ff
commit 7c15dd79de
1 changed files with 1 additions and 1 deletions

View 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