From: Aaron Ballman Date: Wed, 22 Jul 2015 17:51:42 +0000 (+0000) Subject: Balancing parenthesis in comments and documentation; NFC. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd1646823b5c8c62a6baa662de07cecfd993815f;p=platform%2Fupstream%2Fllvm.git Balancing parenthesis in comments and documentation; NFC. llvm-svn: 242915 --- diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index f447136..5d34b07 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -1691,7 +1691,7 @@ and reference to that variable declaration within a compound statement. Given __attribute__((device)) void f() { ... } -decl(hasAttr(clang::attr::CUDADevice)) matches the function declaration of +decl(hasAttr(clang::attr::CUDADevice))) matches the function declaration of f. diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index 4e7625c..9d14501 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/include/clang/ASTMatchers/ASTMatchers.h @@ -4108,7 +4108,7 @@ AST_MATCHER_P(CaseStmt, hasCaseConstant, internal::Matcher, /// \code /// __attribute__((device)) void f() { ... } /// \endcode -/// decl(hasAttr(clang::attr::CUDADevice)) matches the function declaration of +/// decl(hasAttr(clang::attr::CUDADevice))) matches the function declaration of /// f. AST_MATCHER_P(Decl, hasAttr, attr::Kind, AttrKind) { for (const auto *Attr : Node.attrs()) {