How 2 preserve whitespace for next-line closing brace in Visual Studio 2015?

Started by
0 comments, last by Madolite 8 years, 2 months ago

So, this is embarassing. I've messed around with the formatting of brace indentation, and now I can't seem to fix the closing brace back to default.

In Visual Studio 2015, does any of you know how to prevent this aut-formatting from happening when you hit Enter after open braces?:


        foo()
        {
            .....
}

(foo() is three levels down in scope, here)
-
and back to the default, this:


        foo()
        {
            .....
        }

-
I can't for the life of me figure out what I did to mess up that closing brace. Thanks in advance.

Advertisement

Nevermind, guys. It's a bug on my side.
I wrote a while loop as:


while(some.function))
{
}

The missing open parenthesis is what causes it... *head explodes*

This topic is closed to new replies.

Advertisement