Hi,
By default VAX adds spaces around arguments to the function. This leads to an additional space after opening parenthis:
void Foo:bar( int argument1, float argument2, Foo & other )
However when breaking the arguments line into several lines (usually to keep code under 80 characters wide) it aligns second and other arguments to the first character after parenthsis:
void Foo:bar( int argument1,
float argument2,
Foo & other )
In my opinion this should be consistent - either remove the space or make arguments align to the first argument.