]> granicus.if.org Git - clang/commitdiff
[clang] Fixing windows buildbot after D61552
authorGauthier Harnisch <tyker1@outlook.com>
Thu, 20 Jun 2019 10:27:14 +0000 (10:27 +0000)
committerGauthier Harnisch <tyker1@outlook.com>
Thu, 20 Jun 2019 10:27:14 +0000 (10:27 +0000)
Summary:
original review : https://reviews.llvm.org/D61552

build bot faillure : http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/110

this adds a missing definition of cxxDeductionGuideDecl.
surprisingly it was still working on linux with out it.

Reviewers: aaron.ballman

Differential Revision: https://reviews.llvm.org/D63592

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@363919 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ASTMatchers/ASTMatchersInternal.cpp

index 4ee32fbe94b1a5667be3091f7f28df094e845d08..1ec0d88e318890d0c7ca79b6f255f186e47e8e9b 100644 (file)
@@ -603,6 +603,8 @@ const internal::VariadicDynCastAllOfMatcher<Decl, EnumConstantDecl>
 const internal::VariadicDynCastAllOfMatcher<Decl, CXXMethodDecl> cxxMethodDecl;
 const internal::VariadicDynCastAllOfMatcher<Decl, CXXConversionDecl>
     cxxConversionDecl;
+const internal::VariadicDynCastAllOfMatcher<Decl, CXXDeductionGuideDecl>
+    cxxDeductionGuideDecl;
 const internal::VariadicDynCastAllOfMatcher<Decl, VarDecl> varDecl;
 const internal::VariadicDynCastAllOfMatcher<Decl, FieldDecl> fieldDecl;
 const internal::VariadicDynCastAllOfMatcher<Decl, IndirectFieldDecl>