AP_OpticalFlow: add missing override keywords

This commit is contained in:
Peter Barker 2019-02-22 10:11:28 +11:00 committed by Francisco Ferreira
parent 4d62c996b7
commit 54a250483b
1 changed files with 2 additions and 2 deletions

View File

@ -11,10 +11,10 @@ public:
AP_OpticalFlow_SITL(OpticalFlow &_frontend);
// init - initialise the sensor
void init();
void init() override;
// update - read latest values from sensor and fill in x,y and totals.
void update(void);
void update(void) override;
private:
SITL::SITL *_sitl;