AP_Logger: fix warning for implicit overrided function

This commit is contained in:
Pierre Kancir 2022-01-03 14:36:51 +01:00 committed by Peter Barker
parent 5e8fed9d43
commit 247a72b823

View File

@ -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;