Skip to content
Snippets Groups Projects
Commit 9efa9f6c authored by Emilio Corigliano's avatar Emilio Corigliano
Browse files

[Analog] Fixing warning of copy constructor of AnalogPressureSensor

parent 885fed7c
Branches
No related tags found
Loading
Pipeline #9950 passed
...@@ -49,9 +49,9 @@ public: ...@@ -49,9 +49,9 @@ public:
} }
AnalogPressureSensor(AnalogPressureSensor&& other) AnalogPressureSensor(AnalogPressureSensor&& other)
: getVoltage{std::move(other.getVoltage)}, offset{other.offset}, : getVoltage{std::move(other.getVoltage)}, offsetMutex{},
supplyVoltage{other.supplyVoltage}, maxPressure{other.maxPressure}, offset{other.offset}, supplyVoltage{other.supplyVoltage},
minPressure{other.minPressure}, offsetMutex{} maxPressure{other.maxPressure}, minPressure{other.minPressure}
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment