mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
AP_Logger: fix warning for implicit overrided function
This commit is contained in:
parent
5e8fed9d43
commit
247a72b823
@ -14,7 +14,7 @@ public:
|
||||
_logger_backend = backend;
|
||||
}
|
||||
|
||||
bool out_of_time_for_writing_messages() const;
|
||||
virtual bool out_of_time_for_writing_messages() const;
|
||||
|
||||
protected:
|
||||
bool _finished = false;
|
||||
@ -124,7 +124,7 @@ public:
|
||||
#endif
|
||||
}
|
||||
|
||||
bool out_of_time_for_writing_messages() const;
|
||||
bool out_of_time_for_writing_messages() const override;
|
||||
|
||||
void reset() override;
|
||||
void process() override;
|
||||
|
Loading…
Reference in New Issue
Block a user