Removed redundant (and troublesome on Windows) assignment.

release/4.3a0
Frank Dellaert 2018-12-22 17:10:25 -05:00
parent 617040f503
commit 94010aee9d
1 changed files with 0 additions and 1 deletions

View File

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