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

WRG: windows warnong (missing return)

parent 86eff5dc
Branches
Tags
No related merge requests found
......@@ -272,10 +272,8 @@ int main(int ac, char* av[])
std::cerr << "Failure: " << testToRun << ": no test identified " << testToRun << "\n";
return -1;
}
if (j != StringToTestFunctionMap.end())
else
{
std::cout<<"goooo?: "<<std::endl;
MainFuncPointer f = j->second;
int result;
try
......@@ -313,8 +311,6 @@ int main(int ac, char* av[])
result = EXIT_FAILURE;
}
std::cout<<"result: "<<result<<std::endl;
if (result != EXIT_SUCCESS )
{
return -1;
......@@ -399,7 +395,7 @@ int main(int ac, char* av[])
return -1;
}
std::cout << "------------- End control baseline tests -------------" << std::endl;
return result;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment