Browse Source

AP_Param: remove AP_ParamV `=` operator

apm_2208
Iampete1 3 years ago committed by Peter Hall
parent
commit
90780e52b3
  1. 7
      libraries/AP_Param/AP_Param.h

7
libraries/AP_Param/AP_Param.h

@ -973,13 +973,6 @@ public: @@ -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;
};

Loading…
Cancel
Save