You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix iterating over empty vector or list in Wren has bad iterator value.
Fix compiler warnings on vector and list index in removeAt and insert functions.
Fix StdVectorBindings and StdListBindings using custom class that has no compare operator. If a class or struct with no compare operator used for StdVectorBindings then the function contains() will use pointers instead to check for existing value. Otherwise the contains() function will use std::find.