From ac00d8b4eb3611eb6069c1847606fdbbaf2b597b Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sun, 19 Sep 2021 23:00:45 +0200 Subject: [PATCH] LibWeb: Use AK::Variant default initialization in one more place --- Userland/Libraries/LibWeb/DOM/ExceptionOr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/DOM/ExceptionOr.h b/Userland/Libraries/LibWeb/DOM/ExceptionOr.h index 5b5da29b83..13ea27145a 100644 --- a/Userland/Libraries/LibWeb/DOM/ExceptionOr.h +++ b/Userland/Libraries/LibWeb/DOM/ExceptionOr.h @@ -112,7 +112,7 @@ public: private: Optional m_result; // https://heycam.github.io/webidl/#idl-exceptions - Variant> m_exception { Empty {} }; + Variant> m_exception {}; }; template<>