From d41c51a8106ff20b347d95adf453e58a20d89513 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 10 Mar 2015 15:11:13 +0100 Subject: Fixed some checker warnings. --- Compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Compiler.h') diff --git a/Compiler.h b/Compiler.h index 76f16f3a..4b1e1b4d 100644 --- a/Compiler.h +++ b/Compiler.h @@ -94,8 +94,8 @@ private: std::vector m_continueTags; ///< tag to jump to for a "continue" statement eth::AssemblyItem m_returnTag; ///< tag to jump to for a "return" statement unsigned m_modifierDepth = 0; - FunctionDefinition const* m_currentFunction; - unsigned m_stackCleanupForReturn; ///< this number of stack elements need to be removed before jump to m_returnTag + FunctionDefinition const* m_currentFunction = nullptr; + unsigned m_stackCleanupForReturn = 0; ///< this number of stack elements need to be removed before jump to m_returnTag // arguments for base constructors, filled in derived-to-base order std::map> const*> m_baseArguments; }; -- cgit v1.2.3