From 182fba57b2be332fc856b82de8b76050e7668170 Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 11 Mar 2015 18:10:23 +0100 Subject: [PATCH] Initialize jump type. --- libevmcore/Assembly.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libevmcore/Assembly.h b/libevmcore/Assembly.h index 1cbb12e12..242f6f1ff 100644 --- a/libevmcore/Assembly.h +++ b/libevmcore/Assembly.h @@ -71,7 +71,7 @@ private: AssemblyItemType m_type; u256 m_data; SourceLocation m_location; - JumpType m_jumpType; + JumpType m_jumpType = JumpType::Ordinary; }; using AssemblyItems = std::vector;