missed override in gear detector

This commit is contained in:
Matthew Kennedy 2023-10-24 01:23:51 -07:00 committed by Andrey
parent df0361f271
commit e1fcc6de08
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ public:
float getRpmInGear(size_t gear) const;
SensorResult get() const;
void showInfo(const char* sensorName) const;
SensorResult get() const override;
void showInfo(const char* sensorName) const override;
private:
float computeGearboxRatio() const;