From c7890288cee14e672b0f0fea51bc68c4082f9124 Mon Sep 17 00:00:00 2001 From: Otmane Lahlou <otmane.lahlou@c-s.fr> Date: Wed, 27 Oct 2010 09:39:25 +0200 Subject: [PATCH] ENH: windows compilation errors due to ambiguous call to vcl_log --- Code/BasicFilters/otbBCOInterpolateImageFunction.txx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/BasicFilters/otbBCOInterpolateImageFunction.txx b/Code/BasicFilters/otbBCOInterpolateImageFunction.txx index a259834a13..df4245995b 100644 --- a/Code/BasicFilters/otbBCOInterpolateImageFunction.txx +++ b/Code/BasicFilters/otbBCOInterpolateImageFunction.txx @@ -181,7 +181,7 @@ BCOInterpolateImageFunction<TInputImage, TCoordRep> value += lineRes[i+radius]*BCOCoefX[i+radius]; } - norma = (vcl_log(radius)/vcl_log(2.0)); + norma = (vcl_log(static_cast<double>(radius))/vcl_log(2.0)); norma = norma * norma; return ( static_cast<OutputType>( value/norma ) ); -- GitLab