This commit is contained in:
Hackerpilot 2016-01-14 16:02:24 -08:00
parent ebb2db9303
commit f14c6e1226
4 changed files with 29 additions and 1 deletions

View File

@ -347,7 +347,8 @@ private:
{ {
if (currentIs(tok!")") && indents.topIs(tok!",")) if (currentIs(tok!")") && indents.topIs(tok!","))
indents.pop(); indents.pop();
else if (peekBack2Is(tok!",") && !indents.topIs(tok!",")) else if (peekBack2Is(tok!",") && !indents.topIs(tok!",")
&& indents.indentToMostRecent(tok!"enum") == -1)
indents.push(tok!","); indents.push(tok!",");
newline(); newline();
} }

View File

@ -0,0 +1,11 @@
enum a
{
a,
b,
c,
d,
/* a comment */
e,
f,
g
}

6
tests/issue0207.d Normal file
View File

@ -0,0 +1,6 @@
enum a
{
a, b, c, d,
/* a comment */
e, f, g
}

View File

@ -0,0 +1,10 @@
enum a {
a,
b,
c,
d,
/* a comment */
e,
f,
g
}