mirror of https://github.com/ArduPilot/ardupilot
Tools: re-order initialiser lines so -Werror=reorder will work
This commit is contained in:
parent
6e0f39e3e1
commit
24df6f1574
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue