Fixed indentation in a ClangTidy test
authorDmitri Gribenko <gribozavr@gmail.com>
Fri, 27 Sep 2019 10:58:10 +0000 (10:58 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Fri, 27 Sep 2019 10:58:10 +0000 (10:58 +0000)
llvm-svn: 373068

clang-tools-extra/test/clang-tidy/google-objc-global-variable-declaration.mm

index a6b0f6e..345edec 100644 (file)
@@ -6,5 +6,5 @@ static NSString* const myConstString = @"hello";
 // CHECK-FIXES: static NSString* const kMyConstString = @"hello";
 
 class MyTest {
-    static int not_objc_style;
+  static int not_objc_style;
 };