Remove double return statement in PlainObjectBase::_set()

This commit is contained in:
Jitse Niesen 2014-09-19 22:05:18 +01:00
parent 03dd4dd91a
commit 80de35b6c5

View File

@ -647,7 +647,6 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
{ {
internal::call_assignment(this->derived(), other.derived()); internal::call_assignment(this->derived(), other.derived());
return this->derived(); return this->derived();
return this->derived();
} }
/** \internal Like _set() but additionally makes the assumption that no aliasing effect can happen (which /** \internal Like _set() but additionally makes the assumption that no aliasing effect can happen (which