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
commit f23cc02603
Notes: github-actions[bot] 2024-10-11 01:09:37 +00:00

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