mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_Baro: remove pointless destructor overrides
This commit is contained in:
parent
05fb28c7f9
commit
c56486a39e
@ -17,7 +17,6 @@ public:
|
||||
static AP_Baro_Backend *probe(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
||||
|
||||
private:
|
||||
virtual ~AP_Baro_BMP280(void) {};
|
||||
|
||||
bool _init(void);
|
||||
void _timer(void);
|
||||
|
@ -21,8 +21,7 @@ public:
|
||||
|
||||
private:
|
||||
AP_Baro_ICM20789(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
||||
virtual ~AP_Baro_ICM20789(void) {};
|
||||
|
||||
|
||||
bool init();
|
||||
bool send_cmd16(uint16_t cmd);
|
||||
|
||||
|
@ -44,7 +44,6 @@ public:
|
||||
|
||||
private:
|
||||
AP_Baro_KellerLD(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
||||
virtual ~AP_Baro_KellerLD(void) {};
|
||||
|
||||
bool _init();
|
||||
|
||||
|
@ -21,7 +21,6 @@ public:
|
||||
static AP_Baro_Backend *probe(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
||||
|
||||
private:
|
||||
virtual ~AP_Baro_LPS25H(void) {};
|
||||
|
||||
bool _init(void);
|
||||
void _timer(void);
|
||||
|
@ -38,8 +38,7 @@ private:
|
||||
uint8_t *count, uint8_t max_count);
|
||||
|
||||
AP_Baro_MS56XX(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev, enum MS56XX_TYPE ms56xx_type);
|
||||
virtual ~AP_Baro_MS56XX(void) {};
|
||||
|
||||
|
||||
bool _init();
|
||||
|
||||
void _calculate_5611();
|
||||
|
Loading…
Reference in New Issue
Block a user