| 445 | */ |
| 446 | template<typename OtherDerived> |
| 447 | EIGEN_DEVICE_FUNC |
| 448 | EIGEN_STRONG_INLINE void conservativeResizeLike(const DenseBase<OtherDerived>& other) |
| 449 | { |
| 450 | internal::conservative_resize_like_impl<Derived,OtherDerived>::run(*this, other); |
| 451 | } |
| 452 | |
| 453 | /** This is a special case of the templated operator=. Its purpose is to |
| 454 | * prevent a default operator= from hiding the templated operator=. |
no test coverage detected