Commit e5baad54 authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Inverted logic

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -551,9 +551,9 @@ bool CommandLineLauncher::CheckMissingMandatoryParameter(const std::string & par ...@@ -551,9 +551,9 @@ bool CommandLineLauncher::CheckMissingMandatoryParameter(const std::string & par
if (m_Application->IsParameterMissing(paramKey)) if (m_Application->IsParameterMissing(paramKey))
{ {
std::cerr << "ERROR: Missing mandatory parameter -" << paramKey << "." << std::endl; std::cerr << "ERROR: Missing mandatory parameter -" << paramKey << "." << std::endl;
return true; return false;
} }
return false; return true;
} }
void CommandLineLauncher::CheckUnusedParameter(const std::string & paramKey) const void CommandLineLauncher::CheckUnusedParameter(const std::string & paramKey) const
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment