fixing compile issue on vc++14
parent
9f30d225fe
commit
6a5beab4d4
|
@ -167,10 +167,10 @@ public:
|
||||||
// implicit assignment operator for (const GenericValue& rhs) works fine here
|
// implicit assignment operator for (const GenericValue& rhs) works fine here
|
||||||
/// Assignment operator, protected because only the Value or DERIVED
|
/// Assignment operator, protected because only the Value or DERIVED
|
||||||
/// assignment operators should be used.
|
/// assignment operators should be used.
|
||||||
// DerivedValue<DERIVED>& operator=(const DerivedValue<DERIVED>& rhs) {
|
GenericValue<T>& operator=(const GenericValue<T>& rhs) {
|
||||||
// // Nothing to do, do not call base class assignment operator
|
// Nothing to do, do not call base class assignment operator
|
||||||
// return *this;
|
return *this;
|
||||||
// }
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue