Skip to content

Commit 7993aac

Browse files
committed
deleted unused check-fixes in tests
1 parent 51b0b24 commit 7993aac

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

clang-tools-extra/test/clang-tidy/checkers/modernize/pass-by-value.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,11 @@ struct InheritedPrivateMovable : PrivateMovable {
283283

284284
struct X1 {
285285
X1(const ProtectedMovable &M) : M(M) {}
286-
// CHECK-FIXES: X1(const ProtectedMovable &M) : M(M) {}
287286
ProtectedMovable M;
288287
};
289288

290289
struct X2 {
291290
X2(const PrivateMovable &M) : M(M) {}
292-
// CHECK-FIXES: X2(const PrivateMovable &M) : M(M) {}
293291
PrivateMovable M;
294292
};
295293

0 commit comments

Comments
 (0)