AP_Beacon: add override keyword

This commit is contained in:
Peter Barker 2018-11-07 23:11:40 +11:00 committed by Andrew Tridgell
parent ee07789383
commit 64eb8f0986
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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: