From 875ccc5864aebadb294ca4ab24bfd21e58236e19 Mon Sep 17 00:00:00 2001 From: Gabor Horvath Date: Thu, 10 Aug 2017 09:29:39 +0000 Subject: [PATCH] [clang-tidy] Fix a check-fixes line llvm-svn: 310560 --- .../test/clang-tidy/readability-static-accessed-through-instance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/test/clang-tidy/readability-static-accessed-through-instance.cpp b/clang-tools-extra/test/clang-tidy/readability-static-accessed-through-instance.cpp index fff3f4a..fc42a1d 100644 --- a/clang-tools-extra/test/clang-tidy/readability-static-accessed-through-instance.cpp +++ b/clang-tools-extra/test/clang-tidy/readability-static-accessed-through-instance.cpp @@ -118,7 +118,7 @@ template 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 struct S { static int x; }; -- 2.7.4