LibWeb: Remove constexpr from service worker ==

Appeasing clang. The binary == wasn't constexpr and that
crashed compilation
This commit is contained in:
Noah Bright 2024-10-10 19:21:08 -04:00 committed by Andrew Kaster
parent cc0cfd044b
commit f23cc02603

View File

@ -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