forked from OSchip/llvm-project
Include whether the destructor is constexpr in -ast-dump output for a
clss. llvm-svn: 374488
This commit is contained in:
parent
b560fd6c52
commit
63835f3ac7
|
@ -1643,6 +1643,7 @@ void TextNodeDumper::VisitCXXRecordDecl(const CXXRecordDecl *D) {
|
|||
FLAG(hasTrivialDestructor, trivial);
|
||||
FLAG(hasNonTrivialDestructor, non_trivial);
|
||||
FLAG(hasUserDeclaredDestructor, user_declared);
|
||||
FLAG(hasConstexprDestructor, constexpr);
|
||||
FLAG(needsImplicitDestructor, needs_implicit);
|
||||
FLAG(needsOverloadResolutionForDestructor, needs_overload_resolution);
|
||||
if (!D->needsOverloadResolutionForDestructor())
|
||||
|
|
Loading…
Reference in New Issue