diff --git a/AK/StringView.h b/AK/StringView.h index e46eb3d689d..99f03beaa56 100644 --- a/AK/StringView.h +++ b/AK/StringView.h @@ -178,9 +178,6 @@ public: String to_string() const; - const char* begin() { return m_characters; } - const char* end() { return m_characters + m_length; } - template bool is_one_of(const T& string, Rest... rest) const {