Fix #24
This commit is contained in:
parent
c2b22b9e2b
commit
a37f4a967e
|
@ -353,7 +353,7 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
goto case;
|
goto binary;
|
||||||
case tok!"~":
|
case tok!"~":
|
||||||
if (peekIs(tok!"this"))
|
if (peekIs(tok!"this"))
|
||||||
{
|
{
|
||||||
|
@ -361,7 +361,7 @@ private:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
goto case;
|
goto binary;
|
||||||
case tok!"&":
|
case tok!"&":
|
||||||
case tok!"+":
|
case tok!"+":
|
||||||
case tok!"-":
|
case tok!"-":
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
complex_t opMul_r(real x){return complex_t(x)*this;}
|
|
@ -0,0 +1,4 @@
|
||||||
|
complex_t opMul_r(real x)
|
||||||
|
{
|
||||||
|
return complex_t(x) * this;
|
||||||
|
}
|
Loading…
Reference in New Issue