diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 20:00:07 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 20:00:07 -0700 |
commit | a6701a55871bdccd60445da4a47bcc63840c0115 (patch) | |
tree | 8ecb92da538294f9046012e5fd64c7307799f3ff /src/wasm.h | |
parent | 0fd1b5602dd4d55abcd264ee7fd48a17c2780271 (diff) | |
download | binaryen-a6701a55871bdccd60445da4a47bcc63840c0115.tar.gz binaryen-a6701a55871bdccd60445da4a47bcc63840c0115.tar.bz2 binaryen-a6701a55871bdccd60445da4a47bcc63840c0115.zip |
refactoring
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 3 |
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) { |