Issue 131741
Summary Add option for aligning asterisk and variable name
Labels new issue
Assignees
Reporter alan-gu
    I'm using C++ but I think this could be applied to some other languages.

I have

```
struct { 
int a;
bool *b;
}
```

clang format will make it
`
struct {
int      a;
boot *b;
}
`
but I want it to be 
`
struct {
int     a;
boot *b;
}
`
the difference is aligning a to asterisk or to b.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to