From: Clement Courbet Date: Wed, 21 Mar 2018 10:54:29 +0000 (+0000) Subject: [ASTMatchers] Remove extra qualifier for consistency (LibASTMatchersReference.html) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8d8ed2b2be733294ea171898706a4c0072bad90;p=clang [ASTMatchers] Remove extra qualifier for consistency (LibASTMatchersReference.html) + Regenerate doc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328087 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index cc6cd40bd2..8775314afc 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -5152,7 +5152,7 @@ only match the declarations for b, c, and d. -Matcher<Expr>ignoringImplicitast_matchers::Matcher<Expr> InnerMatcher +Matcher<Expr>ignoringImplicitMatcher<Expr> InnerMatcher
Matches expressions that match InnerMatcher after any implicit AST
 nodes are stripped off.
 
diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h
index 30ec133df3..31620de85f 100644
--- a/include/clang/ASTMatchers/ASTMatchers.h
+++ b/include/clang/ASTMatchers/ASTMatchers.h
@@ -693,7 +693,7 @@ AST_POLYMORPHIC_MATCHER_P(
 ///    varDecl(hasInitializer(cxxConstructExpr()))
 /// \endcode
 /// only match the declarations for b and c.
-AST_MATCHER_P(Expr, ignoringImplicit, ast_matchers::internal::Matcher,
+AST_MATCHER_P(Expr, ignoringImplicit, internal::Matcher,
               InnerMatcher) {
   return InnerMatcher.matches(*Node.IgnoreImplicit(), Finder, Builder);
 }