1
0

Implement GCLIP function

This commit is contained in:
otya128
2016-12-04 21:57:07 +09:00
parent 3b1193ee80
commit 460787c33d
4 changed files with 171 additions and 41 deletions

View File

@@ -87,6 +87,11 @@ class OutOfRange : SmileBasicError
this.errnum = 10;
super("Out of range");
}
this(string func)
{
this.errnum = 10;
super("Out of range(" ~ func ~ ")");
}
this(string func, int arg)
{
this.errnum = 10;