aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r--ExpressionCompiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h
index 67b16aac..c0ee4ab4 100644
--- a/ExpressionCompiler.h
+++ b/ExpressionCompiler.h
@@ -146,12 +146,12 @@ private:
private:
CompilerContext* m_context;
- LValueType m_type;
+ LValueType m_type = NONE;
/// If m_type is STACK, this is base stack offset (@see
/// CompilerContext::getBaseStackOffsetOfVariable) of a local variable.
- unsigned m_baseStackOffset;
+ unsigned m_baseStackOffset = 0;
/// Size of the value of this lvalue on the stack.
- unsigned m_stackSize;
+ unsigned m_stackSize = 0;
};
bool m_optimize;