mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Remove constexpr from service worker ==
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Appeasing clang. The binary == wasn't constexpr and that crashed compilation
This commit is contained in:
parent
cc0cfd044b
commit
f23cc02603
Notes:
github-actions[bot]
2024-10-11 01:09:37 +00:00
Author: https://github.com/noahmbright Commit: https://github.com/LadybirdBrowser/ladybird/commit/f23cc026031 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1724
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue