Fix #162
This commit is contained in:
parent
6fb035ff8b
commit
47a972693d
|
@ -310,8 +310,14 @@ private:
|
|||
write(" ");
|
||||
}
|
||||
else if (!currentIs(tok!"{"))
|
||||
{
|
||||
if (currentIs(tok!")") && indents.topIs(tok!","))
|
||||
indents.pop();
|
||||
else if (peekBack2Is(tok!",") && !indents.topIs(tok!","))
|
||||
indents.push(tok!",");
|
||||
newline();
|
||||
}
|
||||
}
|
||||
else
|
||||
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