Hi,
We’re getting some weird issues with the auto-formatting of code if there is a c++ style comment on the previous line before an if statement.
For example this code works fine and is how we want it:
if ( something ) {
return;
}
But if we add a comment on the line before like this it changes to the following when it’s auto formatted on the ending curly brace:
// comment
if( something )
{
return;
}
Any ideas what could be wrong?
Regards
Jens Nilsson
-
This topic was modified 6 years, 5 months ago by Jensa.
-
This topic was modified 6 years, 5 months ago by Jensa.
-
This topic was modified 6 years, 5 months ago by Jensa.