AP_BattMonitor: add override specifier to Bebop

This commit is contained in:
Randy Mackay 2017-02-07 14:22:53 +09:00
parent 93aa40a9e0
commit e4c99a22bc
1 changed files with 2 additions and 2 deletions

View File

@ -32,10 +32,10 @@ public:
virtual ~AP_BattMonitor_Bebop(void) {};
// initialise
void init();
void init() override;
// read the latest battery voltage
void read();
void read() override;
private:
float _prev_vbat_raw;