fixing compile issue on vc++14

release/4.3a0
Jing Dong 2017-05-16 17:42:30 -07:00
parent 9f30d225fe
commit 6a5beab4d4
1 changed files with 4 additions and 4 deletions

View File

@ -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: