From 68a7c8376e9e97e96568124df39450dbe79a7a3d Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Tue, 21 Mar 2023 22:39:19 +0100 Subject: [PATCH] override --- ESP32/disk_backend_esp32.h | 6 +++--- disk_backend_file.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ESP32/disk_backend_esp32.h b/ESP32/disk_backend_esp32.h index 383eccf..1021497 100644 --- a/ESP32/disk_backend_esp32.h +++ b/ESP32/disk_backend_esp32.h @@ -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; }; diff --git a/disk_backend_file.h b/disk_backend_file.h index bf1bd6d..b239e1c 100644 --- a/disk_backend_file.h +++ b/disk_backend_file.h @@ -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; };