mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Changed: Invert version and help checks
This commit is contained in:
parent
1720f33c53
commit
8040a6495b
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue