From 76a355817bd243944a4578a79dee5f220598172a Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 15 Jan 2010 13:26:39 +0100 Subject: fix a warning --- Eigen/src/Core/products/SelfadjointRank2Update.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Eigen/src/Core') diff --git a/Eigen/src/Core/products/SelfadjointRank2Update.h b/Eigen/src/Core/products/SelfadjointRank2Update.h index c95de1146..856049e02 100644 --- a/Eigen/src/Core/products/SelfadjointRank2Update.h +++ b/Eigen/src/Core/products/SelfadjointRank2Update.h @@ -87,7 +87,7 @@ SelfAdjointView& SelfAdjointView ei_selfadjoint_rank2_update_selector::ret>::type, typename ei_cleantype::ret>::type, - (IsRowMajor ? (UpLo==Upper ? Lower : Upper) : UpLo)> + (IsRowMajor ? int(UpLo==Upper ? Lower : Upper) : UpLo)> ::run(const_cast(_expression().data()),_expression().stride(),actualU,actualV,actualAlpha); return *this; -- cgit v1.2.3