diff options
Diffstat (limited to 'src/wasm-linker.h')
-rw-r--r-- | src/wasm-linker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-linker.h b/src/wasm-linker.h index 015e3a085..2a6e3c01a 100644 --- a/src/wasm-linker.h +++ b/src/wasm-linker.h @@ -294,7 +294,7 @@ class Linker { if (out.wasm.checkExport(name)) return; // Already exported auto exp = new Export; exp->name = exp->value = name; - exp->kind = Export::Function; + exp->kind = ExternalKind::Function; out.wasm.addExport(exp); } |