mirror of https://github.com/ArduPilot/ardupilot
AP_OpticalFlow: resolve compiler warning
This commit is contained in:
parent
dfd58cc57b
commit
a517db4b5e
|
@ -70,8 +70,8 @@ const AP_Param::GroupInfo OpticalFlow::var_info[] = {
|
|||
|
||||
// default constructor
|
||||
OpticalFlow::OpticalFlow(AP_AHRS_NavEKF &ahrs)
|
||||
: _last_update_ms(0)
|
||||
, _ahrs(ahrs)
|
||||
: _ahrs(ahrs),
|
||||
_last_update_ms(0)
|
||||
{
|
||||
AP_Param::setup_object_defaults(this, var_info);
|
||||
|
||||
|
|
Loading…
Reference in New Issue