[PATCH] D114583: [clang-format] Adjust braced list detection
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 25 07:53:17 PST 2021
MyDeveloperDay added a comment.
FormatsBracedListsInColumnLayout is actually failing in its own test... it now produces
void foo() {
{ // asdf
{ int a; }
}
{
{ int b; }
}
}
rather than previously
void foo() {
{// asdf
{int a;
}
}
{
{ int b; }
}
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114583/new/
https://reviews.llvm.org/D114583
More information about the cfe-commits
mailing list