Don't put spaces inside empty braces

This commit is contained in:
Laurent Tréguier 2018-11-06 16:40:25 +01:00
parent dc8e7a087c
commit 67664c2835
No known key found for this signature in database
GPG Key ID: 09530BFFC32D4A69
5 changed files with 9 additions and 8 deletions

View File

@ -805,7 +805,8 @@ private:
else else
{ {
niBraceDepth++; niBraceDepth++;
write(" "); if (!currentIs(tok!"}"))
write(" ");
} }
} }
else else
@ -872,7 +873,7 @@ private:
{ {
if (niBraceDepth > 0) if (niBraceDepth > 0)
{ {
if (!peekBackIsSlashSlash()) if (!peekBackIsSlashSlash() && !peekBackIs(tok!"{"))
write(" "); write(" ");
niBraceDepth--; niBraceDepth--;
} }

View File

@ -1,5 +1,5 @@
auto fun = function() { }; auto fun = function() {};
auto fun = () { }; auto fun = () {};
auto fun = {}; auto fun = {};
auto fun = { int i; }; auto fun = { int i; };

View File

@ -1,3 +1,3 @@
alias foo = typeof({ import std.math; }); alias foo = typeof({ import std.math; });
alias bar = typeof({ write("aaa"); }); alias bar = typeof({ write("aaa"); });
alias baz = typeof({ }); alias baz = typeof({});

View File

@ -1,5 +1,5 @@
auto fun = function() { }; auto fun = function() {};
auto fun = () { }; auto fun = () {};
auto fun = {}; auto fun = {};
auto fun = { int i; }; auto fun = { int i; };

View File

@ -1,3 +1,3 @@
alias foo = typeof({ import std.math; }); alias foo = typeof({ import std.math; });
alias bar = typeof({ write("aaa"); }); alias bar = typeof({ write("aaa"); });
alias baz = typeof({ }); alias baz = typeof({});