Skip to content

Commit 6624957

Browse files
committed
tests...
1 parent 4c7c14f commit 6624957

File tree

1 file changed

+1
-1
lines changed
  • clang-tools-extra/test/clang-tidy/checkers/modernize

1 file changed

+1
-1
lines changed

clang-tools-extra/test/clang-tidy/checkers/modernize/use-using.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ typedef int I, &LVal, &&RVal, *Ptr, *const ConstPtr, Vec3[3], Fn(), (*FnPtr)();
106106
// CHECK-MESSAGES: :[[@LINE-5]]:35: warning: use 'using' instead of 'typedef'
107107
// CHECK-MESSAGES: :[[@LINE-6]]:52: warning: use 'using' instead of 'typedef'
108108
// CHECK-MESSAGES: :[[@LINE-7]]:61: warning: use 'using' instead of 'typedef'
109-
// CHECK-MESSAGES: :[[@LINE-7]]:67: warning: use 'using' instead of 'typedef'
109+
// CHECK-MESSAGES: :[[@LINE-8]]:67: warning: use 'using' instead of 'typedef'
110110
// CHECK-FIXES: using I = int;
111111
// CHECK-FIXES-NEXT: using LVal = I &;
112112
// CHECK-FIXES-NEXT: using RVal = I &&;

0 commit comments

Comments
 (0)