I am using a trial version of Visual Assist X on VS2010 Pro.
When I retrieve a method or change the refactoring of a method signature, it gives me the following:
void Solver::Work( Stack &s, Board &b )
However, I would be very grateful if this would give me this:
void Solver::Work(Stack &s, Board &b)
No extra spaces. Is there any way to fix this?
Kugel source
share