Don't put spaces inside empty braces
This commit is contained in:
parent
dc8e7a087c
commit
67664c2835
|
@ -805,7 +805,8 @@ private:
|
|||
else
|
||||
{
|
||||
niBraceDepth++;
|
||||
write(" ");
|
||||
if (!currentIs(tok!"}"))
|
||||
write(" ");
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -872,7 +873,7 @@ private:
|
|||
{
|
||||
if (niBraceDepth > 0)
|
||||
{
|
||||
if (!peekBackIsSlashSlash())
|
||||
if (!peekBackIsSlashSlash() && !peekBackIs(tok!"{"))
|
||||
write(" ");
|
||||
niBraceDepth--;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
auto fun = function() { };
|
||||
auto fun = () { };
|
||||
auto fun = function() {};
|
||||
auto fun = () {};
|
||||
auto fun = {};
|
||||
|
||||
auto fun = { int i; };
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
alias foo = typeof({ import std.math; });
|
||||
alias bar = typeof({ write("aaa"); });
|
||||
alias baz = typeof({ });
|
||||
alias baz = typeof({});
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
auto fun = function() { };
|
||||
auto fun = () { };
|
||||
auto fun = function() {};
|
||||
auto fun = () {};
|
||||
auto fun = {};
|
||||
|
||||
auto fun = { int i; };
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
alias foo = typeof({ import std.math; });
|
||||
alias bar = typeof({ write("aaa"); });
|
||||
alias baz = typeof({ });
|
||||
alias baz = typeof({});
|
||||
|
|
Loading…
Reference in New Issue