| commit | 1db6c3868760d6c9c05b238b636f155d3247ecc2 | [log] [tgz] |
|---|---|---|
| author | Daniel Jasper <djasper@google.com> | Tue Oct 22 15:30:28 2013 +0000 |
| committer | Daniel Jasper <djasper@google.com> | Tue Oct 22 15:30:28 2013 +0000 |
| tree | 7aa91a94966d112c911541ae60769fba4e581168 | |
| parent | 69f531065ced9fcbe62750dc114326d4056b6639 [diff] |
clang-format: Improve formatting of ObjC array literals.
Before:
NSArray *arguments =
@[ kind == kUserTicket ? @"--user-store" : @"--system-store",
@"--print-tickets", @"--productid", @"com.google.Chrome" ];
After:
NSArray *arguments = @[
kind == kUserTicket ? @"--user-store" : @"--system-store",
@"--print-tickets",
@"--productid",
@"com.google.Chrome"
];
This fixes llvm.org/PR15231.
llvm-svn: 193167