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

ENH : comparaison signed/unsigned

parent 283edac4
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ int main(int argc, char* argv[])
/** write available parameters to a vector */
for (unsigned int i=0;i<nbParameters;++i)
{
if ( argc >= ( i+3 ) )
if ( argc >= static_cast<int>( i+3 ) )
{
/** Get the default parameter (from cmake)*/
paramVector.push_back( argv[i+2] );
......
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