Skip to content

Commit

Permalink
AP_Logger: make some functions final
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr committed Sep 25, 2023
1 parent 09eaf1d commit 50b7b93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/AP_Logger/LoggerMessageWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class LoggerMessageWriter_DFLogStart : public LoggerMessageWriter {
{
}

virtual void set_logger_backend(class AP_Logger_Backend *backend) override {
void set_logger_backend(class AP_Logger_Backend *backend) override final {
LoggerMessageWriter::set_logger_backend(backend);
_writesysinfo.set_logger_backend(backend);
#if AP_MISSION_ENABLED
Expand All @@ -124,7 +124,7 @@ class LoggerMessageWriter_DFLogStart : public LoggerMessageWriter {
#endif
}

bool out_of_time_for_writing_messages() const override;
bool out_of_time_for_writing_messages() const override final;

void reset() override;
void process() override;
Expand Down

0 comments on commit 50b7b93

Please sign in to comment.