[PATCH] D97577: [clang-tidy] performance-for-range-copy: Don't trigger on implicit type conversions.
Felix Berger via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 26 13:38:41 PST 2021
flx updated this revision to Diff 326793.
flx added a comment.
Remove include.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97577/new/
https://reviews.llvm.org/D97577
Files:
clang-tools-extra/clang-tidy/performance/ForRangeCopyCheck.cpp
clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy.cpp
Index: clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy.cpp
+++ clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy.cpp
@@ -60,13 +60,13 @@
void negativeUserDefinedConversion() {
Convertible C[0];
- for (const S &S1 : C) {
+ for (const S S1 : C) {
}
}
void negativeImplicitConstructorConversion() {
ConstructorConvertible C[0];
- for (const S &S1 : C) {
+ for (const S S1 : C) {
}
}
Index: clang-tools-extra/clang-tidy/performance/ForRangeCopyCheck.cpp
===================================================================
--- clang-tools-extra/clang-tidy/performance/ForRangeCopyCheck.cpp
+++ clang-tools-extra/clang-tidy/performance/ForRangeCopyCheck.cpp
@@ -45,10 +45,14 @@
hasOverloadedOperatorName("*"),
callee(
cxxMethodDecl(returns(unless(hasCanonicalType(referenceType()))))));
+ auto NotConstructedByCopy = cxxConstructExpr(
+ hasDeclaration(cxxConstructorDecl(unless(isCopyConstructor()))));
+ auto ConstructedByConversion = cxxMemberCallExpr(callee(cxxConversionDecl()));
auto LoopVar =
varDecl(HasReferenceOrPointerTypeOrIsAllowed,
- unless(hasInitializer(expr(hasDescendant(expr(anyOf(
- materializeTemporaryExpr(), IteratorReturnsValueType)))))));
+ unless(hasInitializer(expr(hasDescendant(expr(
+ anyOf(materializeTemporaryExpr(), IteratorReturnsValueType,
+ NotConstructedByCopy, ConstructedByConversion)))))));
Finder->addMatcher(
traverse(TK_AsIs,
cxxForRangeStmt(hasLoopVariable(LoopVar.bind("loopVar")))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97577.326793.patch
Type: text/x-patch
Size: 1785 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210226/6c893276/attachment.bin>
More information about the cfe-commits
mailing list