Issue 79054
Summary [clang-format] break before brace after assignment
Labels clang-format
Assignees
Reporter yshui
    there is no way to control how braces are broken in the following case:

```c
struct SomeStruct variable = {
    member1,
 member2,
}
```

It would be formatted with the brace attached to the assignment. Instead I want to format it as:

```c
struct SomeStruct variable =
{
    member1,
    member2,
}
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to