mirror of https://github.com/ArduPilot/ardupilot
AC_CustomControl: re-order initialiser lines so -Werror=reorder will work
This commit is contained in:
parent
3a4d890a83
commit
a40b3879fb
|
@ -10,10 +10,10 @@ class AC_CustomControl_Backend
|
|||
{
|
||||
public:
|
||||
AC_CustomControl_Backend(AC_CustomControl& frontend, AP_AHRS_View*& ahrs, AC_AttitudeControl*& att_control, AP_MotorsMulticopter*& motors, float dt) :
|
||||
_frontend(frontend),
|
||||
_ahrs(ahrs),
|
||||
_att_control(att_control),
|
||||
_motors(motors)
|
||||
_motors(motors),
|
||||
_frontend(frontend)
|
||||
{}
|
||||
|
||||
// empty destructor to suppress compiler warning
|
||||
|
|
Loading…
Reference in New Issue