Issue 58076
Summary [clang-format] Class inheritance can't be put to the next line
Labels
Assignees
Reporter regrainb
    I found no ways to obtain the following style:
```
class C
   : public A
   , protected B
{
};
```

Instead, I obtain:
```
class C: public A
   , protected B
{
};
```

I join the .clang-format file I'm using for configuration:
[clang-format.txt](https://github.com/llvm/llvm-project/files/9682654/clang-format.txt)

Is the issue in clang-format or in the configuration file ?
Are there workaround to solve it?
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to