Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
It appears that this regressed some ObjC patterns:
% cat test.m # before: good
void f() {
//
BOOL a = [b.c count] > 1;
int b = a;
}
% clang-format -style=google test.m # after: bad, statements joined on the same line
void f() {
//
BOOL a = [b.c count] > 1; int b = a;
}
%@curdeius could you please take a look?
Comment Actions
It appears that this regressed some ObjC patterns:
@curdeius any progress on this? If not, could we revert this for now? Internally we've got enough of these regressing ObjC patterns that we can't release clang-format with this.
Comment Actions
We haven't heard from @curdeius in a very long time. I think he is (currently) not available for clang-format anymore.