The coding standards at my company have changed such that the function declaration
void foo( int a, float* b);
must now be written as:
void
foo(int a,
float* b);
Where both the type of the variable and the name of the variable must be vertically aligned.
I'm using emacs 23.2 with c++-mode.
This mode lines up each variable type but won't let me indent the variable names to match.
Is there a build in setting to allow this?
If there isn't, what do I need to turn off to allow me to freely indent my variable names?