summaryrefslogtreecommitdiff
path: root/src/binary-reader-logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader-logging.h')
-rw-r--r--src/binary-reader-logging.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h
index 22516268..db868d13 100644
--- a/src/binary-reader-logging.h
+++ b/src/binary-reader-logging.h
@@ -23,9 +23,9 @@ namespace wabt {
class Stream;
-class BinaryReaderLogging : public BinaryReader {
+class BinaryReaderLogging : public BinaryReaderDelegate {
public:
- BinaryReaderLogging(Stream*, BinaryReader* forward);
+ BinaryReaderLogging(Stream*, BinaryReaderDelegate* forward);
bool OnError(const char* message) override;
void OnSetState(const State* s) override;
@@ -235,7 +235,7 @@ class BinaryReaderLogging : public BinaryReader {
void LogTypes(Index type_count, Type* types);
Stream* stream;
- BinaryReader* reader;
+ BinaryReaderDelegate* reader;
int indent;
};