Fix #44
This commit is contained in:
parent
9374214fdf
commit
e73280791a
|
|
@ -505,9 +505,12 @@ private:
|
|||
writeToken();
|
||||
if (currentIs(tok!"}", false))
|
||||
tempIndent = 0;
|
||||
else if (!currentIs(tok!")", false) && !currentIs(tok!"]", false))
|
||||
else if (!currentIs(tok!")", false) && !currentIs(tok!"]", false)
|
||||
&& !currentIs(tok!"comment", false))
|
||||
{
|
||||
write(" ");
|
||||
}
|
||||
}
|
||||
regenLineBreakHintsIfNecessary(index - 1);
|
||||
break;
|
||||
case tok!"=":
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
enum Sizeok : int
|
||||
{
|
||||
SIZEOKnone, // size of aggregate is not computed yet
|
||||
SIZEOKdone, // size of aggregate is set correctly
|
||||
SIZEOKfwd, // error in computing size of aggregate
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
enum Sizeok : int
|
||||
{
|
||||
SIZEOKnone, // size of aggregate is not computed yet
|
||||
SIZEOKdone, // size of aggregate is set correctly
|
||||
SIZEOKfwd, // error in computing size of aggregate
|
||||
}
|
||||
Loading…
Reference in New Issue