From 4774bed58940987e6182a7f1fc78e9b56fa3e5e9 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Sun, 16 Jan 2022 20:33:16 +0200 Subject: [PATCH] AK: Make Utf8View constexpr-constructible --- AK/Utf8View.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Utf8View.h b/AK/Utf8View.h index 60496deb9a6..f63ac2c178d 100644 --- a/AK/Utf8View.h +++ b/AK/Utf8View.h @@ -65,7 +65,7 @@ public: { } - explicit Utf8View(StringView string) + explicit constexpr Utf8View(StringView string) : m_string(string) { }