Merge pull request #610 from jyaif/bar

Remove unused prototype.
This commit is contained in:
Bob Nystrom
2019-02-15 07:30:16 -08:00
committed by GitHub

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.
//