Don't put spaces inside empty braces
This commit is contained in:
parent
dc8e7a087c
commit
67664c2835
|
@ -805,6 +805,7 @@ private:
|
|||
else
|
||||
{
|
||||
niBraceDepth++;
|
||||
if (!currentIs(tok!"}"))
|
||||
write(" ");
|
||||
}
|
||||
}
|
||||
|
@ -872,7 +873,7 @@ private:
|
|||
{
|
||||
if (niBraceDepth > 0)
|
||||
{
|
||||
if (!peekBackIsSlashSlash())
|
||||
if (!peekBackIsSlashSlash() && !peekBackIs(tok!"{"))
|
||||
write(" ");
|
||||
niBraceDepth--;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue