LibWeb: Use AK::Variant default initialization in one more place
This commit is contained in:
parent
8084957e88
commit
ac00d8b4eb
Notes:
sideshowbarker
2024-07-18 03:35:13 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/ac00d8b4eb3 Pull-request: https://github.com/SerenityOS/serenity/pull/10164
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public:
|
|||
private:
|
||||
Optional<ValueType> m_result;
|
||||
// https://heycam.github.io/webidl/#idl-exceptions
|
||||
Variant<Empty, SimpleException, NonnullRefPtr<DOMException>> m_exception { Empty {} };
|
||||
Variant<Empty, SimpleException, NonnullRefPtr<DOMException>> m_exception {};
|
||||
};
|
||||
|
||||
template<>
|
||||
|
|
Loading…
Add table
Reference in a new issue