No spaces after 'this' if followed by '.'

This commit is contained in:
Hackerpilot 2015-01-13 23:47:40 -08:00
parent 30f8464f0e
commit cf9876f565
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ private:
auto next = tokens[index + 1]; auto next = tokens[index + 1];
if (next.type == tok!";" || next.type == tok!"(" if (next.type == tok!";" || next.type == tok!"("
|| next.type == tok!")" || next.type == tok!"," || next.type == tok!")" || next.type == tok!","
|| next.type == tok!"{") || next.type == tok!"{" || next.type == tok!".")
{ {
writeToken(); writeToken();
} }