From 151b8b95c642dea388c2f7da475e4db432bc6962 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 15 Mar 2015 19:10:51 -0400 Subject: [PATCH] Fix bug in case where EIGEN_TEST_SPECIFIC_BLOCKING_SIZE is defined but false --- Eigen/src/Core/products/GeneralBlockPanelKernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h index 6aadfea83..bc24a17ac 100644 --- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h +++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h @@ -272,8 +272,8 @@ inline bool useSpecificBlockingSizes(Index& k, Index& m, Index& n) EIGEN_UNUSED_VARIABLE(k) EIGEN_UNUSED_VARIABLE(m) EIGEN_UNUSED_VARIABLE(n) - return false; #endif + return false; } /** \brief Computes the blocking parameters for a m x k times k x n matrix product