Fix #66
This commit is contained in:
parent
41dc8ef9e9
commit
745ffd6a5b
|
@ -374,8 +374,11 @@ private:
|
|||
.equalRange(current.index).empty)
|
||||
{
|
||||
writeToken();
|
||||
if (!currentIs(tok!"*") && !currentIs(tok!")") && !currentIs(tok!"["))
|
||||
if (!currentIs(tok!"*") && !currentIs(tok!")") && !currentIs(tok!"[")
|
||||
&& !currentIs(tok!","))
|
||||
{
|
||||
write(" ");
|
||||
}
|
||||
break;
|
||||
}
|
||||
else if (assumeSorted(astInformation.unaryLocations).equalRange(current.index).empty)
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
int overloadApply(int function(void*, Dsymbol) fp)
|
||||
{
|
||||
}
|
||||
|
||||
void takesArray(int[])
|
||||
{
|
||||
doesntUseArray();
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
int overloadApply(int function(void*, Dsymbol) fp)
|
||||
{
|
||||
}
|
||||
|
||||
void takesArray(int[])
|
||||
{
|
||||
doesntUseArray();
|
||||
}
|
Loading…
Reference in New Issue