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

This commit is contained in:
Peter Barker 2024-09-20 22:20:43 +10:00 committed by Peter Barker
parent 5f5fb40753
commit 8bd1f49a04

View File

@ -32,8 +32,8 @@ extern const AP_HAL::HAL& hal;
// constructor
NavEKF2_core::NavEKF2_core(NavEKF2 *_frontend) :
frontend(_frontend),
dal(AP::dal())
dal(AP::dal()),
frontend(_frontend)
{
}