Is there a built-in feature or available add-on for Visual Studio 2010 that will clean up spacing in C++ code so that annoying blocks like this:
RandomVar=RandomList.RandomMethod();
will become
RandomVar = RandomList.RandomMethod();
(Same goes for spacing in loops, etc.)
…or do I need to do this myself with find/replace and regex?
The auto-formatting settings for C++ in Eclipse are more extensive than in Visual Studio, so I ended up using that instead.