summaryrefslogtreecommitdiff
path: root/src/binary-reader-interp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader-interp.h')
-rw-r--r--src/binary-reader-interp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binary-reader-interp.h b/src/binary-reader-interp.h
index 82043ce5..767b9479 100644
--- a/src/binary-reader-interp.h
+++ b/src/binary-reader-interp.h
@@ -18,6 +18,7 @@
#define WABT_BINARY_READER_INTERP_H_
#include "src/common.h"
+#include "src/error.h"
namespace wabt {
@@ -28,14 +29,13 @@ class Environment;
} // namespace interp
-class ErrorHandler;
struct ReadBinaryOptions;
Result ReadBinaryInterp(interp::Environment* env,
const void* data,
size_t size,
const ReadBinaryOptions& options,
- ErrorHandler*,
+ Errors*,
interp::DefinedModule** out_module);
} // namespace wabt