diff --git a/AK/Vector.h b/AK/Vector.h index 1e2dc53bb3..646a767bd1 100644 --- a/AK/Vector.h +++ b/AK/Vector.h @@ -407,19 +407,6 @@ public: m_capacity = new_capacity; } - void shift_left(int count) - { - ASSERT(count <= m_size); - if (count == m_size) { - clear(); - return; - } - for (int i = 0; i < m_size - count; ++i) { - at(i) = move(at(i + count)); - } - m_size -= count; - } - void resize(int new_size) { if (new_size == size())