From 228ae29591b80b87975fc79100a67ce55e1e41f2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 9 Sep 2016 22:34:38 +0200 Subject: Fix compilation on 32 bits systems. --- Eigen/src/Core/util/XprHelper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eigen/src/Core/util/XprHelper.h b/Eigen/src/Core/util/XprHelper.h index ebe70f193..fa60008ef 100644 --- a/Eigen/src/Core/util/XprHelper.h +++ b/Eigen/src/Core/util/XprHelper.h @@ -673,9 +673,9 @@ struct scalar_div_cost { template -struct scalar_div_cost::type> { enum { value = 24 }; }; +struct scalar_div_cost::type> { enum { value = 24 }; }; template -struct scalar_div_cost::type> { enum { value = 21 }; }; +struct scalar_div_cost::type> { enum { value = 21 }; }; #ifdef EIGEN_DEBUG_ASSIGN -- cgit v1.2.3