Rename remove() to remove_at() when removing by index
This commit is contained in:
committed by
Aaron Record
parent
5efe80f308
commit
e078f970db
@ -123,7 +123,7 @@ public:
|
||||
|
||||
for (int j = 0; j < triangles.size(); j++) {
|
||||
if (triangles[j].bad) {
|
||||
triangles.remove(j);
|
||||
triangles.remove_at(j);
|
||||
j--;
|
||||
}
|
||||
}
|
||||
@ -154,7 +154,7 @@ public:
|
||||
}
|
||||
}
|
||||
if (invalid) {
|
||||
triangles.remove(i);
|
||||
triangles.remove_at(i);
|
||||
i--;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user