mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibWeb: Use AK::Variant default initialization in one more place
This commit is contained in:
parent
8084957e88
commit
ac00d8b4eb
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public:
|
||||||
private:
|
private:
|
||||||
Optional<ValueType> m_result;
|
Optional<ValueType> m_result;
|
||||||
// https://heycam.github.io/webidl/#idl-exceptions
|
// https://heycam.github.io/webidl/#idl-exceptions
|
||||||
Variant<Empty, SimpleException, NonnullRefPtr<DOMException>> m_exception { Empty {} };
|
Variant<Empty, SimpleException, NonnullRefPtr<DOMException>> m_exception {};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue