[clang-tidy] Fix a check-fixes line

llvm-svn: 310560
This commit is contained in:
Gabor Horvath 2017-08-10 09:29:39 +00:00
parent aa660b5149
commit 875ccc5864
1 changed files with 1 additions and 1 deletions

View 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; };