[clang-tidy] Fix a check-fixes line
authorGabor Horvath <xazax.hun@gmail.com>
Thu, 10 Aug 2017 09:29:39 +0000 (09:29 +0000)
committerGabor Horvath <xazax.hun@gmail.com>
Thu, 10 Aug 2017 09:29:39 +0000 (09:29 +0000)
llvm-svn: 310560

clang-tools-extra/test/clang-tidy/readability-static-accessed-through-instance.cpp

index fff3f4a..fc42a1d 100644 (file)
@@ -118,7 +118,7 @@ template <typename T> void f(T t, C c) {
   t.x; // OK, t is a template parameter.
   c.x;
   // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: static member
-  // CHECK-FIXES: {{^}}  C::x; // 1{{$}}
+  // CHECK-FIXES: {{^}}  C::x;{{$}}
 }
 
 template <int N> struct S { static int x; };