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

AP_HAL: correct compilation for sim-on-hardware with -werror=reorder
This commit is contained in:
Peter Barker 2024-11-10 14:31:39 +11:00 committed by Peter Barker
parent 35f2dce575
commit cca1edb78d
1 changed files with 3 additions and 3 deletions

View File

@ -67,9 +67,6 @@ public:
scheduler(_scheduler),
util(_util),
opticalflow(_opticalflow),
#if AP_SIM_ENABLED && CONFIG_HAL_BOARD != HAL_BOARD_SITL
simstate(_simstate),
#endif
flash(_flash),
#if HAL_WITH_DSP
dsp(_dsp),
@ -85,6 +82,9 @@ public:
_serial7,
_serial8,
_serial9}
#if AP_SIM_ENABLED && CONFIG_HAL_BOARD != HAL_BOARD_SITL
,simstate(_simstate)
#endif
{
#if HAL_NUM_CAN_IFACES > 0
if (_can_ifaces == nullptr) {