Get rid of some unused parameters.

This commit is contained in:
Bob Nystrom
2015-03-22 22:17:40 -07:00
parent d438edc8d0
commit a4df577903
9 changed files with 24 additions and 24 deletions

View File

@ -688,7 +688,7 @@ Value wrenStringCodePointAt(WrenVM* vm, ObjString* string, uint32_t index);
// Search for the first occurence of [needle] within [haystack] and returns its
// zero-based offset. Returns `UINT32_MAX` if [haystack] does not contain
// [needle].
uint32_t wrenStringFind(WrenVM* vm, ObjString* haystack, ObjString* needle);
uint32_t wrenStringFind(ObjString* haystack, ObjString* needle);
// Creates a new open upvalue pointing to [value] on the stack.
Upvalue* wrenNewUpvalue(WrenVM* vm, Value* value);