From 15d72d3f9aef0216d3b1074bf962bdc33776e877 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 18 Dec 2008 03:47:49 +0000 Subject: [PATCH] somehow we had forgotten this very important static assertion... --- Eigen/src/Core/CwiseBinaryOp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Eigen/src/Core/CwiseBinaryOp.h b/Eigen/src/Core/CwiseBinaryOp.h index cb72e34d5..b951ee0f3 100644 --- a/Eigen/src/Core/CwiseBinaryOp.h +++ b/Eigen/src/Core/CwiseBinaryOp.h @@ -101,6 +101,7 @@ class CwiseBinaryOp : ei_no_assignment_operator, // add together a float matrix and a double matrix. EIGEN_STATIC_ASSERT((ei_is_same_type::ret), you_mixed_different_numeric_types__you_need_to_use_the_cast_method_of_MatrixBase_to_cast_numeric_types_explicitly) + EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(Lhs, Rhs) // require the sizes to match ei_assert(lhs.rows() == rhs.rows() && lhs.cols() == rhs.cols()); }