always a space after 'return'

This commit is contained in:
Andreas Zwinkau 2015-01-14 20:56:21 +01:00
parent c64ceeb60f
commit 8dfce773d1
1 changed files with 5 additions and 0 deletions

View File

@ -141,6 +141,11 @@ private:
formatStep();
}
}
else if (current.type == tok!"return")
{
writeToken();
write(" ");
}
else if (current.type == tok!"switch")
formatSwitch();
else if (current.type == tok!"for" || current.type == tok!"foreach"