Fix #162
This commit is contained in:
parent
6fb035ff8b
commit
47a972693d
|
@ -310,7 +310,13 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
else if (!currentIs(tok!"{"))
|
else if (!currentIs(tok!"{"))
|
||||||
|
{
|
||||||
|
if (currentIs(tok!")") && indents.topIs(tok!","))
|
||||||
|
indents.pop();
|
||||||
|
else if (peekBack2Is(tok!",") && !indents.topIs(tok!","))
|
||||||
|
indents.push(tok!",");
|
||||||
newline();
|
newline();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
newline();
|
newline();
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
void foo(int foobarbazqux1, /* */
|
||||||
|
int foobarbazqux2, /* */
|
||||||
|
int foobarbazqux3, /* */
|
||||||
|
int foobarbazqux4, /* */
|
||||||
|
int foobarbazqux5, /* */
|
||||||
|
int foobarbazqux6, /* */
|
||||||
|
int foobarbazqux7 /* */
|
||||||
|
);
|
|
@ -0,0 +1,8 @@
|
||||||
|
void foo(int foobarbazqux1, /* */
|
||||||
|
int foobarbazqux2, /* */
|
||||||
|
int foobarbazqux3, /* */
|
||||||
|
int foobarbazqux4, /* */
|
||||||
|
int foobarbazqux5, /* */
|
||||||
|
int foobarbazqux6, /* */
|
||||||
|
int foobarbazqux7 /* */
|
||||||
|
);
|
|
@ -0,0 +1,8 @@
|
||||||
|
void foo(int foobarbazqux1, /* */
|
||||||
|
int foobarbazqux2, /* */
|
||||||
|
int foobarbazqux3, /* */
|
||||||
|
int foobarbazqux4, /* */
|
||||||
|
int foobarbazqux5, /* */
|
||||||
|
int foobarbazqux6, /* */
|
||||||
|
int foobarbazqux7 /* */
|
||||||
|
);
|
Loading…
Reference in New Issue