Hello,
The source code formatter is adding a newline after the namespace resolution operator.
for example,
Before format:
SomeNameSpace::functionInNameSpace();
After format:
SomeNameSpace ::functionInNameSpace();
What setting do I need to change to stop the formatter from adding the newline?
Stephen