We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a057ec9 commit b8d2599Copy full SHA for b8d2599
src/binaryen.cpp
@@ -498,7 +498,7 @@ ExecutionResult BinaryenEngine::execute(
498
wasm::ModuleInstance instance(module, &interface);
499
500
try {
501
- instance.callExport(Name("main"), LiteralList{});
+ instance.callExport(wasm::Name("main"), wasm::LiteralList{});
502
} catch (EndExecution const&) {
503
// This exception is ignored here because we consider it to be a success.
504
// It is only a clutch for POSIX style exit()
0 commit comments