summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h
index f1f16a469..56432faf9 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -632,8 +632,9 @@ public:
// See comment in Table.
bool exists;
bool imported;
+ bool shared;
- Memory() : initial(0), max(kMaxSize), exists(false), imported(false) {
+ Memory() : initial(0), max(kMaxSize), exists(false), imported(false), shared(false) {
name = Name::fromInt(0);
}
};