Browse Source

AP_OpticalFlow: add missing override keywords

master
Peter Barker 6 years ago committed by Francisco Ferreira
parent
commit
54a250483b
  1. 4
      libraries/AP_OpticalFlow/AP_OpticalFlow_SITL.h

4
libraries/AP_OpticalFlow/AP_OpticalFlow_SITL.h

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

Loading…
Cancel
Save