Skip to content
Snippets Groups Projects
Commit 4999e599 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ERR : change pow(double, int) -> pow(double, double)

parent f187d2be
Branches
Tags
No related merge requests found
......@@ -120,7 +120,7 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
double NEBN = 0.;
for(unsigned int i=0; i<curCoeff.size(); i++)
{
NEBN += curCoeff[i]*vcl_pow( diffCurRange, i);
NEBN += curCoeff[i]*vcl_pow( diffCurRange, static_cast<double>(i));
}
double sigma = ( outRadBr - m_CalFactor*NEBN ) * m_SinLocalIncidentAngle;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment