From: Mu-Woong Lee Date: Wed, 7 Sep 2016 11:07:21 +0000 (+0900) Subject: Change the order of the member variables of rv_sensor to fix a build warning X-Git-Tag: submit/tizen/20160928.053031^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1949173f95c15e8b9c2767fb2809803510ccb4d;p=platform%2Fcore%2Fsystem%2Fsensord.git Change the order of the member variables of rv_sensor to fix a build warning Change-Id: Ifa28a42d379118d039446c5f3dab61f678885879 Signed-off-by: Mu-Woong Lee --- diff --git a/src/sensor/rotation_vector/rv_sensor.h b/src/sensor/rotation_vector/rv_sensor.h index 2a984c79..db23d016 100644 --- a/src/sensor/rotation_vector/rv_sensor.h +++ b/src/sensor/rotation_vector/rv_sensor.h @@ -49,8 +49,8 @@ public: virtual int get_data(sensor_data_t **data, int *length); private: sensor_base *m_accel_sensor; - sensor_base *m_mag_sensor; sensor_base *m_gyro_sensor; + sensor_base *m_mag_sensor; gyro_magnetic_fusion m_fusion; float m_x;