AP_InertialSensor: fix build warning for MPU6000

This commit is contained in:
Randy Mackay 2016-11-23 16:02:51 +09:00
parent 5009e83b6d
commit 699279ed1f
1 changed files with 1 additions and 1 deletions

View File

@ -254,8 +254,8 @@ AP_InertialSensor_MPU6000::AP_InertialSensor_MPU6000(AP_InertialSensor &imu,
enum Rotation rotation)
: AP_InertialSensor_Backend(imu)
, _temp_filter(1000, 1)
, _dev(std::move(dev))
, _rotation(rotation)
, _dev(std::move(dev))
{
}