Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/bossa
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-06-09 11:33:52 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-06-09 11:33:52 +0300
commiteb2e814a76e92405a77267fb71db243f6b6e53d0 (patch)
treef4132b55f5ce667293ed0c3bf94183bedbd101f7 /src/bossa
parentb41de852a65359a6361a50fc4700cb6578ae97c1 (diff)
Added missing 'override' specifiers
Diffstat (limited to 'src/bossa')
-rw-r--r--src/bossa/EefcFlash.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/bossa/EefcFlash.h b/src/bossa/EefcFlash.h
index 91dc3682..a92241e6 100644
--- a/src/bossa/EefcFlash.h
+++ b/src/bossa/EefcFlash.h
@@ -49,30 +49,30 @@ public:
bool canBrownout) THROWS(GCodeException);
virtual ~EefcFlash();
- void eraseAll(uint32_t offset) THROWS(GCodeException);
- void eraseAuto(bool enable) noexcept;
+ void eraseAll(uint32_t offset) THROWS(GCodeException) override;
+ void eraseAuto(bool enable) noexcept override;
- Vector<bool, 16> getLockRegions() THROWS(GCodeException);
+ Vector<bool, 16> getLockRegions() THROWS(GCodeException) override;
#if ORIGINAL_BOSSA_CODE
bool getSecurity();
bool getBod();
#endif
- bool canBod() noexcept { return _canBrownout; }
+ bool canBod() noexcept override { return _canBrownout; }
#if ORIGINAL_BOSSA_CODE
bool getBor();
#endif
- bool canBor() noexcept { return _canBrownout; }
+ bool canBor() noexcept override { return _canBrownout; }
- bool getBootFlash() THROWS(GCodeException);
- bool canBootFlash() noexcept { return true; }
+ bool getBootFlash() THROWS(GCodeException) override;
+ bool canBootFlash() noexcept override { return true; }
- void writeOptions() THROWS(GCodeException);
+ void writeOptions() THROWS(GCodeException) override;
- void writePage(uint32_t page) THROWS(GCodeException);
- void readPage(uint32_t page, uint8_t* data) THROWS(GCodeException);
+ void writePage(uint32_t page) THROWS(GCodeException) override;
+ void readPage(uint32_t page, uint8_t* data) THROWS(GCodeException) override;
static const uint32_t PagesPerErase;