AK: Disallow constructing a JsonValue from a ByteString

This does not have any more users. Let's force callers to convert to a
String themselves.
This commit is contained in:
Timothy Flynn 2026-04-28 15:26:18 -04:00 committed by Shannon Booth
parent 8664eac047
commit 14c9b261f9

View file

@ -56,6 +56,7 @@ public:
JsonValue(String);
JsonValue(StringView);
JsonValue(ByteString const&) = delete;
template<typename T>
requires(SameAs<RemoveCVReference<T>, bool>)