Removes some nonsense.
This commit is contained in:
parent
3e40f3e795
commit
b31774eeb0
1 changed files with 0 additions and 3 deletions
|
@ -622,9 +622,6 @@ interpret(struct f_inst *what)
|
||||||
case T_VOID: runtime( "Can't operate with values of type void" );
|
case T_VOID: runtime( "Can't operate with values of type void" );
|
||||||
case T_INT: if (v2.val.i == 0) runtime( "Mother told me not to divide by 0" );
|
case T_INT: if (v2.val.i == 0) runtime( "Mother told me not to divide by 0" );
|
||||||
res.val.i = v1.val.i / v2.val.i; break;
|
res.val.i = v1.val.i / v2.val.i; break;
|
||||||
case T_IP: if (v2.type != T_INT)
|
|
||||||
runtime( "Incompatible types in / operator" );
|
|
||||||
break;
|
|
||||||
default: runtime( "Usage of unknown type" );
|
default: runtime( "Usage of unknown type" );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue