clang-format: Add a space in ObjC protocols.
authorDaniel Jasper <djasper@google.com>
Fri, 1 Aug 2014 13:03:05 +0000 (13:03 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 1 Aug 2014 13:03:05 +0000 (13:03 +0000)
commitdcf37fbec5432495ab0f9966343ac18f8e8dff2e
tree85149797189b934ca5a13aab955431ad53c92a33
parent4bfa0de5b07d3d104e3c14a550cf5c354ffc3739
clang-format: Add a space in ObjC protocols.

Before:
  @interface Foo (HackStuff)<MyProtocol>

After:
  @interface Foo (HackStuff) <MyProtocol>

llvm-svn: 214508
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp