Skip to content
Snippets Groups Projects
Commit 53d82226 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH: fixing warnings

parent 7fb98276
No related branches found
No related tags found
No related merge requests found
......@@ -48,9 +48,9 @@ PointSetDensityFunction< TPointSet, TOutput>
{
typename otb::Image<OutputType,2>::IndexType index;
index[0] = input[0];
index[1] = input[1];
index[0] = static_cast<long int>(input[0]);
index[1] = static_cast<long int>(input[1]);
int accu = 0;
double surface = M_PI*vcl_pow(2.,static_cast<double>(m_Radius));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment