From 8e61a7aab6751af64ef689a1adaf463775644675 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 26 Nov 2014 15:03:22 +0100 Subject: [PATCH] Fix a case where 0-1 leads to Dynamic instead of 0. --- Eigen/src/Core/products/CoeffBasedProduct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/CoeffBasedProduct.h b/Eigen/src/Core/products/CoeffBasedProduct.h index a11cb201a..421f925e1 100644 --- a/Eigen/src/Core/products/CoeffBasedProduct.h +++ b/Eigen/src/Core/products/CoeffBasedProduct.h @@ -185,7 +185,7 @@ class CoeffBasedProduct { PacketScalar res; internal::product_packet_impl ::run(row, col, m_lhs, m_rhs, res); return res;