We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b212770 commit aa46750Copy full SHA for aa46750
clang-tools-extra/clang-tidy/performance/LostStdMoveCheck.cpp
@@ -174,7 +174,8 @@ void LostStdMoveCheck::check(const MatchFinder::MatchResult &Result) {
174
175
// Calculate X usage count in the statement
176
llvm::SmallPtrSet<const DeclRefExpr *, 16> DeclRefs;
177
- ArrayRef<BoundNodes> Matches = match(
+
178
+ SmallVector<BoundNodes, 1> Matches = match(
179
findAll(declRefExpr(
180
181
to(varDecl(equalsNode(MatchedDecl))),
0 commit comments