Fix #44
This commit is contained in:
parent
9374214fdf
commit
e73280791a
|
|
@ -505,8 +505,11 @@ private:
|
||||||
writeToken();
|
writeToken();
|
||||||
if (currentIs(tok!"}", false))
|
if (currentIs(tok!"}", false))
|
||||||
tempIndent = 0;
|
tempIndent = 0;
|
||||||
else if (!currentIs(tok!")", false) && !currentIs(tok!"]", false))
|
else if (!currentIs(tok!")", false) && !currentIs(tok!"]", false)
|
||||||
|
&& !currentIs(tok!"comment", false))
|
||||||
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
regenLineBreakHintsIfNecessary(index - 1);
|
regenLineBreakHintsIfNecessary(index - 1);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
immutable NameId[] namesA = [{"Aacgr", 0x00386}, // GREEK CAPITAL LETTER ALPHA WITH TONOS
|
immutable NameId[] namesA = [{"Aacgr", 0x00386}, // GREEK CAPITAL LETTER ALPHA WITH TONOS
|
||||||
{"aacgr", 0x003AC}, // GREEK SMALL LETTER ALPHA WITH TONOS
|
{"aacgr", 0x003AC}, // GREEK SMALL LETTER ALPHA WITH TONOS
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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