Changed: Invert version and help checks

This commit is contained in:
kervala 2016-01-14 23:47:24 +01:00
parent 1720f33c53
commit 8040a6495b

View file

@ -321,13 +321,6 @@ bool CCmdArgs::parse(const std::vector<std::string> &argv)
}
}
// process help if requested or if required arguments are missing
if (haveLongArg("help") || (needRequiredArg() && !haveRequiredArg()))
{
displayHelp();
return false;
}
// process version
if (haveLongArg("version"))
{
@ -335,6 +328,13 @@ bool CCmdArgs::parse(const std::vector<std::string> &argv)
return false;
}
// process help if requested or if required arguments are missing
if (haveLongArg("help") || (needRequiredArg() && !haveRequiredArg()))
{
displayHelp();
return false;
}
return true;
}