Issue 142631
Summary [clang-format] How to remove blank line after open curly bracket (`{`)?
Labels clang-format
Assignees
Reporter parmi93
    How can I remove the blank lines in the following example?

```c
char *strings[] = {

    "Hello", "World"};  // Remove the blank line above

typedef struct {

    int a; // Remove the blank line above
} my_struct_t;

void foo()
{

     // Remove the blank line above
 while (true)
    {

        // Remove the blank line above
 }
}
```


_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to