mirror of https://github.com/ArduPilot/ardupilot
AP_RangeFinder: add override keyword where required
This commit is contained in:
parent
e0ab431ebd
commit
94e0485bdf
|
@ -27,7 +27,7 @@ public:
|
|||
static bool detect();
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ public:
|
|||
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ public:
|
|||
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ public:
|
|||
AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ public:
|
|||
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -17,10 +17,10 @@ public:
|
|||
static bool detect();
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
// Get update from mavlink
|
||||
void handle_msg(mavlink_message_t *msg);
|
||||
void handle_msg(mavlink_message_t *msg) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ public:
|
|||
AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ public:
|
|||
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
static bool detect();
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
static bool detect();
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ public:
|
|||
AP_HAL::OwnPtr<AP_HAL::I2CDevice> i2c_dev);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ public:
|
|||
static AP_RangeFinder_Backend *detect(RangeFinder::RangeFinder_State &_state, AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ public:
|
|||
static bool detect(RangeFinder::RangeFinder_State &_state);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ public:
|
|||
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
||||
|
||||
// update state
|
||||
void update(void);
|
||||
void update(void) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
Loading…
Reference in New Issue