Consider following piece of code:
int main ()
{
int *p, *q;
}
I ran astye as follows:
% astyle --version
Artistic Style Version 3.1
% astyle --align-pointer=middle --options=none test.c
int main ()
{
int * p, *q;
}
Only the pointer p has been aligned in the middle while q remains unchanged.
Please fix this.
Regards,
Sulabh
You might try the 3.3 beta3 release which contains a fix.