Remove unused prototype.

This commit is contained in:
Jean-François Geyelin
2018-09-27 15:01:41 +02:00
parent 744147fd94
commit 8929415847

View File

@ -137,10 +137,6 @@ void wrenFinalizeForeign(WrenVM* vm, ObjForeign* foreign);
// Creates a new [WrenHandle] for [value].
WrenHandle* wrenMakeHandle(WrenVM* vm, Value value);
// Executes [source] in the context of [module].
WrenInterpretResult wrenInterpretInModule(WrenVM* vm, const char* module,
const char* source);
// Compile [source] in the context of [module] and wrap in a fiber that can
// execute it.
//