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 0440a36 commit 9c57c47Copy full SHA for 9c57c47
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param.cpp
@@ -286,7 +286,7 @@ struct NotCopyAssigned {
286
};
287
288
void PositiveNoMoveForNonCopyAssignmentOperator(ExpensiveMovableType E) {
289
- // CHECK-MESSAGES: [[@LINE-1]]:69: warning: the parameter 'E' is copied
+ // CHECK-MESSAGES: [[@LINE-1]]:70: warning: the parameter 'E' is copied
290
// CHECK-FIXES: void PositiveNoMoveForNonCopyAssignmentOperator(const ExpensiveMovableType& E) {
291
NotCopyAssigned N;
292
N = E;
0 commit comments