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, 1 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h
index bac19b587..d13eb0795 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -748,7 +748,7 @@ public:
};
class Module {
-protected:
+public:
// wasm contents
std::map<Name, FunctionType*> functionTypes;
std::map<Name, Import> imports;
@@ -756,7 +756,6 @@ protected:
Table table;
std::vector<Function*> functions;
-public:
Module() {}
friend std::ostream& operator<<(std::ostream &o, Module module) {