Skip to content
Snippets Groups Projects
Commit dec55f22 authored by Jordi Inglada's avatar Jordi Inglada
Browse files

BUG: warning correction

parent 7894ec94
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ namespace Functor
inline TOutputPixel operator()(const TInputPixel& input)
{
return 2*vcl_sqrt(input[0]*input[0] + input[1]*input[1] );
return static_cast<TOutputPixel>(2*vcl_sqrt(input[0]*input[0] + input[1]*input[1] ));
}
};
......
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