Tools: re-order initialiser lines so -Werror=reorder will work

This commit is contained in:
Peter Barker 2024-09-22 10:37:45 +10:00 committed by Peter Barker
parent 6e0f39e3e1
commit 24df6f1574
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{
}