No spaces after 'this' if followed by '.'
This commit is contained in:
parent
30f8464f0e
commit
cf9876f565
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue