]> granicus.if.org Git - clang/commit
Fix ObjC block declarations.
authorDaniel Jasper <djasper@google.com>
Wed, 9 Jan 2013 08:36:49 +0000 (08:36 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 9 Jan 2013 08:36:49 +0000 (08:36 +0000)
commit886568dc24eb0a1ccf73bf32d1eafa8fd4008cc6
tree7707b332270a9fb01ea6c2602c9fc11f385928c2
parent9c837d05c9e6d6971900d36b1e462ed3666b7487
Fix ObjC block declarations.

Before: int ( ^ Block1) (int, int) = ^ (int i, int j)
After:  int (^Block1) (int, int) = ^(int i, int j)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171959 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
test/Index/comment-c-decls.c
test/Index/format-comment-cdecls.c
unittests/Format/FormatTest.cpp