[PATCH] D116527: [clang-format] Fix indentation for array variables with alignment of consecutive assignments and declarations.
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 4 00:09:04 PST 2022
MyDeveloperDay added a comment.
This is born out by setting ContinuationIndentWidth: 8
int i = 0;
float i2 = 0;
auto v = type{
i = 1, //
(i = 2), //
i = 3 //
};
So maybe the original test is correct..
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116527/new/
https://reviews.llvm.org/D116527
More information about the cfe-commits
mailing list