r363917 - [clang][ASTMatchers] Add definition for cxxDeductionGuideDecl introduced in rL363855
Kadir Cetinkaya via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 20 03:13:58 PDT 2019
Author: kadircet
Date: Thu Jun 20 03:13:58 2019
New Revision: 363917
URL: http://llvm.org/viewvc/llvm-project?rev=363917&view=rev
Log:
[clang][ASTMatchers] Add definition for cxxDeductionGuideDecl introduced in rL363855
Modified:
cfe/trunk/lib/ASTMatchers/ASTMatchersInternal.cpp
Modified: cfe/trunk/lib/ASTMatchers/ASTMatchersInternal.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/ASTMatchers/ASTMatchersInternal.cpp?rev=363917&r1=363916&r2=363917&view=diff
==============================================================================
--- cfe/trunk/lib/ASTMatchers/ASTMatchersInternal.cpp (original)
+++ cfe/trunk/lib/ASTMatchers/ASTMatchersInternal.cpp Thu Jun 20 03:13:58 2019
@@ -849,6 +849,8 @@ const internal::VariadicDynCastAllOfMatc
ompExecutableDirective;
const internal::VariadicDynCastAllOfMatcher<OMPClause, OMPDefaultClause>
ompDefaultClause;
+const internal::VariadicDynCastAllOfMatcher<Decl, CXXDeductionGuideDecl>
+ cxxDeductionGuideDecl;
} // end namespace ast_matchers
} // end namespace clang
More information about the cfe-commits
mailing list