mirror of https://github.com/ArduPilot/ardupilot
AP_Beacon: add override keyword
This commit is contained in:
parent
ee07789383
commit
64eb8f0986
|
@ -32,10 +32,10 @@ public:
|
|||
AP_Beacon_Marvelmind(AP_Beacon &frontend, AP_SerialManager &serial_manager);
|
||||
|
||||
// return true if sensor is basically healthy (we are receiving data)
|
||||
bool healthy();
|
||||
bool healthy() override;
|
||||
|
||||
// update
|
||||
void update();
|
||||
void update() override;
|
||||
|
||||
private:
|
||||
// Variables for Marvelmind
|
||||
|
|
|
@ -17,10 +17,10 @@ public:
|
|||
AP_Beacon_Pozyx(AP_Beacon &frontend, AP_SerialManager &serial_manager);
|
||||
|
||||
// return true if sensor is basically healthy (we are receiving data)
|
||||
bool healthy();
|
||||
bool healthy() override;
|
||||
|
||||
// update
|
||||
void update();
|
||||
void update() override;
|
||||
|
||||
private:
|
||||
|
||||
|
|
Loading…
Reference in New Issue