diff options
Diffstat (limited to 'src/binary-reader-logging.h')
-rw-r--r-- | src/binary-reader-logging.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h index facc8d5d..214d8bae 100644 --- a/src/binary-reader-logging.h +++ b/src/binary-reader-logging.h @@ -42,11 +42,12 @@ class BinaryReaderLogging : public BinaryReaderDelegate { Result BeginTypeSection(Offset size) override; Result OnTypeCount(Index count) override; - Result OnType(Index index, - Index param_count, - Type* param_types, - Index result_count, - Type* result_types) override; + Result OnFuncType(Index index, + Index param_count, + Type* param_types, + Index result_count, + Type* result_types) override; + Result OnStructType(Index index) override; Result EndTypeSection() override; Result BeginImportSection(Offset size) override; |