mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
device: fix warnings about overridden functions
This commit is contained in:
parent
b65e236fda
commit
4d0a8db06d
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ namespace hw {
|
|||
|
||||
bool set_mode(device_mode mode) override;
|
||||
|
||||
device_type get_type() const {return device_type::SOFTWARE;};
|
||||
device_type get_type() const override {return device_type::SOFTWARE;};
|
||||
|
||||
/* ======================================================================= */
|
||||
/* LOCKER */
|
||||
|
|
|
@ -144,7 +144,7 @@ namespace hw {
|
|||
|
||||
bool set_mode(device_mode mode) override;
|
||||
|
||||
device_type get_type() const {return device_type::LEDGER;};
|
||||
device_type get_type() const override {return device_type::LEDGER;};
|
||||
|
||||
/* ======================================================================= */
|
||||
/* LOCKER */
|
||||
|
|
Loading…
Reference in a new issue