summaryrefslogtreecommitdiff
path: root/include/wabt
diff options
context:
space:
mode:
Diffstat (limited to 'include/wabt')
-rw-r--r--include/wabt/interp/interp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wabt/interp/interp.h b/include/wabt/interp/interp.h
index bb3cf487..dc405a8e 100644
--- a/include/wabt/interp/interp.h
+++ b/include/wabt/interp/interp.h
@@ -27,6 +27,7 @@
#include <vector>
#include "wabt/cast.h"
+#include "wabt/config.h"
#include "wabt/common.h"
#include "wabt/feature.h"
#include "wabt/opcode.h"
@@ -580,7 +581,7 @@ struct Value {
};
public:
-#ifndef NDEBUG
+#ifdef WABT_DEBUG
Value() : v128_(0, 0, 0, 0), type(ValueType::Any) {}
void SetType(ValueType t) { type = t; }
void CheckType(ValueType t) const {