diff --git a/AK/StringView.h b/AK/StringView.h index f238601ae0..0f1b1dbefe 100644 --- a/AK/StringView.h +++ b/AK/StringView.h @@ -40,6 +40,12 @@ public: { } + // Note: This is here for Jakt. + ALWAYS_INLINE static StringView from_string_literal(StringView string) + { + return string; + } + StringView(ByteBuffer const&); #ifndef KERNEL StringView(String const&);