Fix #207
This commit is contained in:
parent
ebb2db9303
commit
f14c6e1226
|
@ -347,7 +347,8 @@ private:
|
|||
{
|
||||
if (currentIs(tok!")") && indents.topIs(tok!","))
|
||||
indents.pop();
|
||||
else if (peekBack2Is(tok!",") && !indents.topIs(tok!","))
|
||||
else if (peekBack2Is(tok!",") && !indents.topIs(tok!",")
|
||||
&& indents.indentToMostRecent(tok!"enum") == -1)
|
||||
indents.push(tok!",");
|
||||
newline();
|
||||
}
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
enum a
|
||||
{
|
||||
a,
|
||||
b,
|
||||
c,
|
||||
d,
|
||||
/* a comment */
|
||||
e,
|
||||
f,
|
||||
g
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
enum a
|
||||
{
|
||||
a, b, c, d,
|
||||
/* a comment */
|
||||
e, f, g
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
enum a {
|
||||
a,
|
||||
b,
|
||||
c,
|
||||
d,
|
||||
/* a comment */
|
||||
e,
|
||||
f,
|
||||
g
|
||||
}
|
Loading…
Reference in New Issue