Compiler squawked because a typed function had no return, create a dummy value
to return.
This commit is contained in:
parent
e5221f3758
commit
80e98bdc57
1 changed files with 4 additions and 0 deletions
|
@ -43,6 +43,10 @@ do_print (int argc, pslValue * argv, pslProgram * p)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pslValue result;
|
||||||
|
result.set();
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static pslValue
|
static pslValue
|
||||||
|
|
Loading…
Reference in a new issue