forked from OSchip/llvm-project
[ASTMatchers] Add missing definition for decompositionDecl
Otherwise we'd get a linker error whenever decompositionDecl is ODR used.
This commit is contained in:
parent
b2c931eff3
commit
f0546173fa
|
@ -710,6 +710,7 @@ const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl> typeAliasDecl;
|
|||
const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasTemplateDecl>
|
||||
typeAliasTemplateDecl;
|
||||
const internal::VariadicAllOfMatcher<Decl> decl;
|
||||
const internal::VariadicAllOfMatcher<DecompositionDecl> decompositionDecl;
|
||||
const internal::VariadicDynCastAllOfMatcher<Decl, LinkageSpecDecl>
|
||||
linkageSpecDecl;
|
||||
const internal::VariadicDynCastAllOfMatcher<Decl, NamedDecl> namedDecl;
|
||||
|
|
Loading…
Reference in New Issue