diff --git a/AK/StringView.h b/AK/StringView.h index fa81b94f824..96cdeaa2881 100644 --- a/AK/StringView.h +++ b/AK/StringView.h @@ -377,6 +377,8 @@ private: template<> struct Traits : public DefaultTraits { + using PeekType = StringView; + using ConstPeekType = StringView; static unsigned hash(StringView s) { return s.hash(); } };