Skip to content
Snippets Groups Projects
Commit e072b4e5 authored by Riccardo Musso's avatar Riccardo Musso
Browse files

Changed order of initialization to silence warnings

parent 82fc61d9
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ class BiasCalibration ...@@ -71,7 +71,7 @@ class BiasCalibration
: public AbstractCalibrationModel<SensorData, SensorData, AxisOrientation> : public AbstractCalibrationModel<SensorData, SensorData, AxisOrientation>
{ {
public: public:
BiasCalibration() : ref(1, 0, 0), sum(0, 0, 0), numSamples(0) {} BiasCalibration() : sum(0, 0, 0), ref(1, 0, 0), numSamples(0) {}
void setReferenceVector(Vector3f vec) { ref = vec; } void setReferenceVector(Vector3f vec) { ref = vec; }
Vector3f getReferenceVector() { return ref; } Vector3f getReferenceVector() { return ref; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment