summaryrefslogtreecommitdiff
path: root/include/wabt/binary-reader-nop.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wabt/binary-reader-nop.h')
-rw-r--r--include/wabt/binary-reader-nop.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/wabt/binary-reader-nop.h b/include/wabt/binary-reader-nop.h
index 75e28d4a..ffa3a4b7 100644
--- a/include/wabt/binary-reader-nop.h
+++ b/include/wabt/binary-reader-nop.h
@@ -519,6 +519,15 @@ class BinaryReaderNop : public BinaryReaderDelegate {
}
Result EndTargetFeaturesSection() override { return Result::Ok; }
+ /* Generic custom section */
+ Result BeginGenericCustomSection(Offset size) override { return Result::Ok; }
+ Result OnGenericCustomSection(std::string_view name,
+ const void* data,
+ Offset size) override {
+ return Result::Ok;
+ };
+ Result EndGenericCustomSection() override { return Result::Ok; }
+
/* Linking section */
Result BeginLinkingSection(Offset size) override { return Result::Ok; }
Result OnSymbolCount(Index count) override { return Result::Ok; }