1
0

Fix GPUTCHR

This commit is contained in:
otya128
2016-12-08 20:41:46 +09:00
parent 372956b507
commit ebed30caba
2 changed files with 26 additions and 13 deletions

View File

@@ -84,6 +84,16 @@ class TypeMismatch : SmileBasicError
this.errnum = 8;
super("Type mismatch");
}
this(string func)
{
this.errnum = 8;
super("Type mismatch(" ~ func ~ ")");
}
this(string func, int arg)
{
this.errnum = 8;
super("Type mismatch(" ~ func ~ ":" ~ arg.to!string ~ ")");
}
}
class OutOfRange : SmileBasicError
{