diff options
Diffstat (limited to 'src/binary-reader-logging.h')
-rw-r--r-- | src/binary-reader-logging.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h index d92fa97e..e2891f8b 100644 --- a/src/binary-reader-logging.h +++ b/src/binary-reader-logging.h @@ -48,6 +48,7 @@ class BinaryReaderLogging : public BinaryReaderDelegate { Index result_count, Type* result_types) override; Result OnStructType(Index index, Index field_count, TypeMut* fields) override; + Result OnArrayType(Index index, TypeMut field) override; Result EndTypeSection() override; Result BeginImportSection(Offset size) override; @@ -355,6 +356,7 @@ class BinaryReaderLogging : public BinaryReaderDelegate { void LogType(Type type); void LogTypes(Index type_count, Type* types); void LogTypes(TypeVector& types); + void LogField(TypeMut field); Stream* stream_; BinaryReaderDelegate* reader_; |