28 mapAnyOf(cxxConstructExpr, cxxUnresolvedConstructExpr)
29 .with(hasParent(compoundStmt().bind(
"compound")),
30 anyOf(hasType(hasCanonicalType(recordType(hasDeclaration(
31 cxxRecordDecl(hasNonTrivialDestructor()))))),
32 hasType(hasCanonicalType(templateSpecializationType(
33 hasDeclaration(classTemplateDecl(has(
34 cxxRecordDecl(hasNonTrivialDestructor())))))))))
59 const auto *E = Result.Nodes.getNodeAs<Expr>(
"expr");
63 if (E->getBeginLoc().isMacroID())
68 const auto *CS = Result.Nodes.getNodeAs<CompoundStmt>(
"compound");
69 const auto *LastExpr = dyn_cast<Expr>(CS->body_back());
71 if (LastExpr && E == LastExpr->IgnoreUnlessSpelledInSource())
75 auto D = diag(E->getBeginLoc(),
"object destroyed immediately after "
76 "creation; did you mean to name the object?");
78 if (
const auto *Node = dyn_cast<CXXConstructExpr>(E))
80 Node->getNumArgs() == 0 ||
81 isa<CXXDefaultArgExpr>(Node->getArg(0)));
82 if (
const auto *Node = dyn_cast<CXXUnresolvedConstructExpr>(E)) {
83 auto SR = SourceRange(Node->getLParenLoc(), Node->getRParenLoc());
84 auto DefaultConstruction = Node->getNumArgs() == 0;
85 if (!DefaultConstruction) {
86 auto *FirstArg = Node->getArg(0);
87 DefaultConstruction = isa<CXXDefaultArgExpr>(FirstArg);
88 if (
auto *ILE = dyn_cast<InitListExpr>(FirstArg)) {
89 DefaultConstruction = ILE->getNumInits() == 0;
90 SR = SourceRange(ILE->getLBraceLoc(), ILE->getRBraceLoc());