mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
Merge pull request #4412
4d0a8db0
device: fix warnings about overridden functions (moneromooo-monero)
This commit is contained in:
commit
295bae10ba
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 */
|
||||
|
|
|
@ -140,7 +140,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