Home
last modified time | relevance | path

Searched refs:SpecialFunctionDecl (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DUseEqualsDefaultCheck.cpp249 const auto *SpecialFunctionDecl = in check() local
252 if (IgnoreMacros && SpecialFunctionDecl->getLocation().isMacroID()) in check()
257 if (SpecialFunctionDecl->isDeleted() || in check()
258 SpecialFunctionDecl->isExplicitlyDefaulted() || in check()
259 SpecialFunctionDecl->isLateTemplateParsed() || in check()
260 SpecialFunctionDecl->isTemplateInstantiation() || in check()
261 !SpecialFunctionDecl->isUserProvided() || !SpecialFunctionDecl->hasBody()) in check()
264 const auto *Body = dyn_cast<CompoundStmt>(SpecialFunctionDecl->getBody()); in check()
273 bool ApplyFix = SpecialFunctionDecl->isCopyAssignmentOperator() || in check()
291 } else if (isa<CXXDestructorDecl>(SpecialFunctionDecl)) { in check()
[all …]