5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-03 22:48:29 -04:00

AP_Param: remove AP_ParamV = operator

This commit is contained in:
Iampete1 2022-07-20 10:43:06 +01:00 committed by Peter Hall
parent 1a3391ebef
commit 90780e52b3

View File

@ -973,13 +973,6 @@ public:
return _value;
}
/// Copy assignment from T is equivalent to ::set.
///
AP_ParamV<T,PT>& operator=(const T &v) {
_value = v;
return *this;
}
protected:
T _value;
};