Commit 094ddc40 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

This assert is no longer valid.

parent d4256d63
Showing with 0 additions and 1 deletion
+0 -1
......@@ -189,7 +189,6 @@ static void Vector_checkArraySize(Vector* this) {
void Vector_insert(Vector* this, int idx, void* data_) {
Object* data = data_;
assert(idx >= 0);
assert(idx <= this->items);
assert(Object_isA(data, this->type));
assert(Vector_isConsistent(this));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment