|
|
| Bugzilla Link |
27353 |
| Version |
trunk |
| OS |
All |
| Reporter |
LLVM Bugzilla Contributor |
| CC |
@mkurdej |
Extended Description
Repro:
$ cat sample.c
int* a;
unsigned long long x;
double* b;
$ clang-format -style="{PointerAlignment: Right, AlignConsecutiveDeclarations: true}" sample.c
int * a;
unsigned long long x;
double * b;
Expected/desired output is:
int *a;
unsigned long long x;
double *b;