Open ilya-biryukov opened 1 year ago
Input:
// clang-format --style=Google int foo() { return { identifierLong, identifierLong2, identifierLongLongLongLong1, identifierLong3, /*is_active=*/true, /*is_twin=*/true}; }
Current output:
int foo() { return {identifierLong, identifierLong2, identifierLongLongLongLong1, identifierLong3, /*is_active=*/true, /*is_twin=*/true}; }
Note how identifierLong2 gets some space added before it for no reason. Expected output: same as input, i.e. one item per line.
identifierLong2
@llvm/issue-subscribers-clang-format
Input:
Current output:
Note how
identifierLong2
gets some space added before it for no reason. Expected output: same as input, i.e. one item per line.