mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-18 13:49:59 +01:00
Get rid of some unused parameters.
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user