This commit is contained in:
Hackerpilot 2015-03-07 14:50:46 -08:00
parent b989388e7c
commit 0a71960d98
3 changed files with 19 additions and 2 deletions

View File

@ -740,8 +740,10 @@ private:
{
if (current.type == tok!";")
{
write("; ");
currentLineLength += 2;
if (!(peekIs(tok!";") || peekIs(tok!")")))
write("; ");
else
write(";");
index++;
continue;
}

6
tests/issue0045.d Normal file
View File

@ -0,0 +1,6 @@
void doStuff()
{
for (; ; ) {
}
for (size_t i = 0; i < se.len; ){}
}

9
tests/issue0045.d.ref Normal file
View File

@ -0,0 +1,9 @@
void doStuff()
{
for (;;)
{
}
for (size_t i = 0; i < se.len;)
{
}
}