Skip to content

Commit

Permalink
Tools: re-order initialiser lines so -Werror=reorder will work
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Sep 22, 2024
1 parent 6b34463 commit 4ec144c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/Replay/LogReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ extern struct user_parameter *user_parameters;

LogReader::LogReader(struct LogStructure *log_structure, NavEKF2 &_ekf2, NavEKF3 &_ekf3) :
AP_LoggerFileReader(),
_log_structure(log_structure),
ekf2(_ekf2),
ekf3(_ekf3)
ekf3(_ekf3),
_log_structure(log_structure)
{
}

Expand Down

0 comments on commit 4ec144c

Please sign in to comment.