diff options
Diffstat (limited to 'AK/Vector.h')
-rw-r--r-- | AK/Vector.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/AK/Vector.h b/AK/Vector.h index 7acc9bdd15..55cf46ca2a 100644 --- a/AK/Vector.h +++ b/AK/Vector.h @@ -150,8 +150,6 @@ public: return false; } - // NOTE: Vector::is_null() exists for the benefit of String::copy(). - bool is_null() const { return false; } bool is_empty() const { return size() == 0; } ALWAYS_INLINE size_t size() const { return m_size; } size_t capacity() const { return m_capacity; } |