diff options
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h index 31dafb84b..9807ee63c 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -1445,11 +1445,11 @@ enum class ExternalKind { class Import { public: - Import() : functionType(nullptr), globalType(none) {} + Import() : globalType(none) {} Name name, module, base; // name = module.base ExternalKind kind; - FunctionType* functionType; // for Function imports + Name functionType; // for Function imports WasmType globalType; // for Global imports }; |