]> granicus.if.org Git - clang/commit
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)
commite7f5aaceb069dd77a4068d9cb4a4eed81023cc90
tree384b0fa0cdd4f462f0be94a5838fc5a847bf81e7
parent502d3d9afcd3e8e3a330bde3076fb1b664e3a9cc
clang-format: Add a space in ObjC protocols.

Before:
  @interface Foo (HackStuff)<MyProtocol>

After:
  @interface Foo (HackStuff) <MyProtocol>

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214508 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTest.cpp