Restored assignment

release/4.3a0
dellaert 2018-12-22 18:07:22 -05:00
parent e2363e90bd
commit 70e2534cc2
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ public:
/// assignment operators should be used.
GenericValue<T>& operator=(const GenericValue<T>& rhs) {
Value::operator=(static_cast<Value const&>(rhs));
value_ = rhs.value_;
return *this;
}