[PATCH] D143375: clang-tidy: Count template constructors in modernize-use-default-member-init
Marco Falke via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 9 06:01:00 PST 2023
MarcoFalke updated this revision to Diff 496104.
MarcoFalke edited the summary of this revision.
MarcoFalke added a comment.
Remove both test cases that pass on current `main` on Linux, but fail on Windows. Seems unrelated to add/fix them here.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143375/new/
https://reviews.llvm.org/D143375
Files:
clang-tools-extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init.cpp
Index: clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init.cpp
+++ clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init.cpp
@@ -60,6 +60,12 @@
int i;
};
+struct TwoConstructorsTpl {
+ TwoConstructorsTpl() : i{7} {}
+ template <typename T> TwoConstructorsTpl(T, int) : i(8) {}
+ int i;
+};
+
struct PositiveNotDefaultOOLInt {
PositiveNotDefaultOOLInt(int);
int i;
Index: clang-tools-extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
===================================================================
--- clang-tools-extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
+++ clang-tools-extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
@@ -246,8 +246,12 @@
// Check whether we have multiple hand-written constructors and bomb out, as
// it is hard to reconcile their sets of member initializers.
const auto *ClassDecl = cast<CXXRecordDecl>(Field->getParent());
- if (llvm::count_if(ClassDecl->ctors(), [](const CXXConstructorDecl *Ctor) {
- return !Ctor->isCopyOrMoveConstructor();
+ if (llvm::count_if(ClassDecl->decls(), [](const Decl *D) {
+ if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(D))
+ D = FTD->getTemplatedDecl();
+ if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(D))
+ return !Ctor->isCopyOrMoveConstructor();
+ return false;
}) > 1)
return;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143375.496104.patch
Type: text/x-patch
Size: 1574 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230209/2f0673e2/attachment-0001.bin>
More information about the cfe-commits
mailing list