Browse Source

AP_Beacon: add override keyword

master
Peter Barker 6 years ago committed by Andrew Tridgell
parent
commit
64eb8f0986
  1. 4
      libraries/AP_Beacon/AP_Beacon_Marvelmind.h
  2. 4
      libraries/AP_Beacon/AP_Beacon_Pozyx.h

4
libraries/AP_Beacon/AP_Beacon_Marvelmind.h

@ -32,10 +32,10 @@ public: @@ -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

4
libraries/AP_Beacon/AP_Beacon_Pozyx.h

@ -17,10 +17,10 @@ public: @@ -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…
Cancel
Save