This commit is contained in:
folkert van heusden 2023-03-21 22:39:19 +01:00
parent 4a4448e7b0
commit 68a7c8376e
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1
2 changed files with 6 additions and 6 deletions

View file

@ -14,9 +14,9 @@ public:
disk_backend_esp32(const std::string & filename);
virtual ~disk_backend_esp32();
bool begin();
bool begin() override;
bool read(const off_t offset, const size_t n, uint8_t *const target);
bool read(const off_t offset, const size_t n, uint8_t *const target) override;
bool write(const off_t offset, const size_t n, const uint8_t *const from);
bool write(const off_t offset, const size_t n, const uint8_t *const from) override;
};

View file

@ -14,9 +14,9 @@ public:
disk_backend_file(const std::string & filename);
virtual ~disk_backend_file();
bool begin();
bool begin() override;
bool read(const off_t offset, const size_t n, uint8_t *const target);
bool read(const off_t offset, const size_t n, uint8_t *const target) override;
bool write(const off_t offset, const size_t n, const uint8_t *const from);
bool write(const off_t offset, const size_t n, const uint8_t *const from) override;
};