From: Aaron Ballman Date: Wed, 22 Jul 2015 17:51:42 +0000 (+0000) Subject: Balancing parenthesis in comments and documentation; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa1bcdbeebae4ed54c4de0c79d3bfa536e77a58a;p=clang Balancing parenthesis in comments and documentation; NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242915 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index f4471364f2..5d34b07527 100644 --- a/docs/LibASTMatchersReference.html +++ b/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/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index 4e7625c1c2..9d14501871 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/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()) {