summaryrefslogtreecommitdiff
path: root/src/binary-reader-nop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader-nop.h')
-rw-r--r--src/binary-reader-nop.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/binary-reader-nop.h b/src/binary-reader-nop.h
index f22b05ad..d7c46d31 100644
--- a/src/binary-reader-nop.h
+++ b/src/binary-reader-nop.h
@@ -465,6 +465,16 @@ class BinaryReaderNop : public BinaryReaderDelegate {
}
Result OnDylinkNeededCount(Index count) override { return Result::Ok; }
Result OnDylinkNeeded(string_view so_name) override { return Result::Ok; }
+ Result OnDylinkImportCount(Index count) override { return Result::Ok; }
+ Result OnDylinkExportCount(Index count) override { return Result::Ok; }
+ Result OnDylinkImport(string_view module,
+ string_view name,
+ uint32_t flags) override {
+ return Result::Ok;
+ }
+ Result OnDylinkExport(string_view name, uint32_t flags) override {
+ return Result::Ok;
+ }
Result EndDylinkSection() override { return Result::Ok; }
/* Linking section */