Merge pull request #409 from LaurentTreguier/empty-braces-double-spaces

Spaces inside empty braces
merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-11-09 10:51:13 +01:00 committed by GitHub
commit fd1f2f5161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 8 deletions

View File

@ -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--;
}