From 5f500df1b28e6b1c49d4256dda130ecd8696ea2e Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 10 Jan 2013 20:12:55 +0000 Subject: Formatting: In @implementation etc lines, put a space before protocol lists. Don't do this in Google style though: http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml#Protocols Most other places (function declarations, variable declarations) still get this wrong, and since this looks very similiar to template instantiations to the lexer (`id a = ...`), it's going to be hard to fix in some places. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172099 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Index/comment-objc-decls.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/Index/comment-objc-decls.m') diff --git a/test/Index/comment-objc-decls.m b/test/Index/comment-objc-decls.m index 9b9805fb84..ae3b0bbf41 100644 --- a/test/Index/comment-objc-decls.m +++ b/test/Index/comment-objc-decls.m @@ -73,7 +73,7 @@ */ @property (copy) id PropertyMyClass; @end -// CHECK: @interface MyClass : NSObject<MyProto> {\n id IvarMyClass;\n}\n@end +// CHECK: @interface MyClass : NSObject <MyProto> {\n id IvarMyClass;\n}\n@end // CHECK: id IvarMyClass // CHECK: - (id)MethodMyClass; // CHECK: + (id)ClassMethodMyClass; -- cgit v1.2.3