Index: src/wasm/wasm-module.h |
diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h |
index 80d6c89bfd3f48c4a5256ca11a6a5119822802e9..71734526df32ac4d04479b99dbbb2d9a78c4735d 100644 |
--- a/src/wasm/wasm-module.h |
+++ b/src/wasm/wasm-module.h |
@@ -99,6 +99,9 @@ struct WasmModule { |
std::vector<WasmDataSegment>* data_segments; // data segments in this module. |
std::vector<uint16_t>* function_table; // function table. |
+ WasmModule(); |
+ ~WasmModule(); |
+ |
// Get a pointer to a string stored in the module bytes representing a name. |
const char* GetName(uint32_t offset) { |
CHECK(BoundsCheck(offset, offset + 1)); |