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: accepted/tizen/3.0/ivi/20161011.062327^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F40%2F87340%2F1;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 2a984c7..db23d01 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;