Skip to content

Commit 9c57c47

Browse files
authored
Fix clang-tidy check
1 parent 0440a36 commit 9c57c47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ struct NotCopyAssigned {
286286
};
287287

288288
void PositiveNoMoveForNonCopyAssignmentOperator(ExpensiveMovableType E) {
289-
// CHECK-MESSAGES: [[@LINE-1]]:69: warning: the parameter 'E' is copied
289+
// CHECK-MESSAGES: [[@LINE-1]]:70: warning: the parameter 'E' is copied
290290
// CHECK-FIXES: void PositiveNoMoveForNonCopyAssignmentOperator(const ExpensiveMovableType& E) {
291291
NotCopyAssigned N;
292292
N = E;

0 commit comments

Comments
 (0)