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

BUG: remove c++11 initialisation

parent dbd066a0
No related branches found
No related tags found
Loading
......@@ -191,7 +191,7 @@ int otbNeighborhoodMajorityVotingImageFilterIsolatedTest(int itkNotUsed(argc), c
// Should not be filtered
if( result != value)
{
std::cout << "2 pixels thres = 1 result = " << int{result} << '\n';
std::cout << "2 pixels thres = 1 result = " << int(result) << '\n';
return EXIT_FAILURE;
}
NeighMajVotingFilter->SetIsolatedThreshold(3);
......
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