diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-04 16:44:39 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-04 17:38:26 -0700 |
commit | 178b869dcdab8ad5877101cbc0347a23e80b02c0 (patch) | |
tree | 8a17c69454d73642cbd180beed009672c4e43485 | |
parent | 10196a4dfae03b08748af26d930c141998cf3e21 (diff) | |
download | binaryen-178b869dcdab8ad5877101cbc0347a23e80b02c0.tar.gz binaryen-178b869dcdab8ad5877101cbc0347a23e80b02c0.tar.bz2 binaryen-178b869dcdab8ad5877101cbc0347a23e80b02c0.zip |
clean up callExport types
-rw-r--r-- | src/wasm-interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 2be386f95..a4af4729d 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -109,7 +109,7 @@ public: } } - Literal callExport(IString name, LiteralList& arguments) { + Literal callExport(Name name, LiteralList& arguments) { Export *export_ = wasm.getExport(name); if (!export_) externalInterface->trap("callExport not found"); return callFunction(export_->value, arguments); |