diff options
Diffstat (limited to 'Eigen/src/Core/MatrixBase.h')
-rw-r--r-- | Eigen/src/Core/MatrixBase.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h index e924fa329..b0b5a50a3 100644 --- a/Eigen/src/Core/MatrixBase.h +++ b/Eigen/src/Core/MatrixBase.h @@ -182,6 +182,9 @@ template<typename Scalar, typename Derived> class MatrixBase CommaInitializer operator<< (const Scalar& s); + template<typename OtherDerived> + CommaInitializer operator<< (const MatrixBase<Scalar, OtherDerived>& other); + /** swaps *this with the expression \a other. * * \note \a other is only marked const because I couln't find another way |