diff --git a/Userland/Libraries/LibWasm/AbstractMachine/AbstractMachine.h b/Userland/Libraries/LibWasm/AbstractMachine/AbstractMachine.h index dd51e74225..346f93dee9 100644 --- a/Userland/Libraries/LibWasm/AbstractMachine/AbstractMachine.h +++ b/Userland/Libraries/LibWasm/AbstractMachine/AbstractMachine.h @@ -388,7 +388,7 @@ public: private: size_t m_arity { 0 }; - InstructionPointer m_continuation; + InstructionPointer m_continuation { 0 }; }; class Frame { @@ -418,7 +418,7 @@ private: class Stack { public: - using EntryType = Variant, NonnullOwnPtr