Issue 61513
Summary clang-format breaks macro to ne line
Labels new issue
Assignees
Reporter vovagorodok
    For file:
```
#define HW_NAME "Prototype"
#define HW_VER {0, 0, 0}
#define SW_NAME "Standard"
#define SW_VER {0, 0, 0}
```
After `-style=Chromium` or any other style:
```
#define HW_NAME "Prototype"
#define HW_VER \
  { 0, 0, 0 }
#define SW_NAME "Standard"
#define SW_VER \
 { 0, 0, 0 }
```
`{ 0, 0, 0 }` is beaked to new line. Cant find option to disable it
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to