Fix #45
This commit is contained in:
parent
b989388e7c
commit
0a71960d98
|
@ -740,8 +740,10 @@ private:
|
|||
{
|
||||
if (current.type == tok!";")
|
||||
{
|
||||
if (!(peekIs(tok!";") || peekIs(tok!")")))
|
||||
write("; ");
|
||||
currentLineLength += 2;
|
||||
else
|
||||
write(";");
|
||||
index++;
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
void doStuff()
|
||||
{
|
||||
for (; ; ) {
|
||||
}
|
||||
for (size_t i = 0; i < se.len; ){}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
void doStuff()
|
||||
{
|
||||
for (;;)
|
||||
{
|
||||
}
|
||||
for (size_t i = 0; i < se.len;)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue