From f23cc026031a22be85a47ef40fbaf126738a929e Mon Sep 17 00:00:00 2001 From: Noah Bright Date: Thu, 10 Oct 2024 19:21:08 -0400 Subject: [PATCH] LibWeb: Remove constexpr from service worker == Appeasing clang. The binary == wasn't constexpr and that crashed compilation --- Userland/Libraries/LibWeb/ServiceWorker/Registration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/ServiceWorker/Registration.cpp b/Userland/Libraries/LibWeb/ServiceWorker/Registration.cpp index 1fd603e76fd..e6b2b635c72 100644 --- a/Userland/Libraries/LibWeb/ServiceWorker/Registration.cpp +++ b/Userland/Libraries/LibWeb/ServiceWorker/Registration.cpp @@ -13,7 +13,7 @@ struct RegistrationKey { StorageAPI::StorageKey key; ByteString serialized_scope_url; - constexpr bool operator==(RegistrationKey const&) const = default; + bool operator==(RegistrationKey const&) const = default; }; // FIXME: Surely this needs hooks to be cleared and manipulated at the UA level