goto check_error;
}
- if (args[argidx] == "-app" && argidx+1 < GetSize(args))
+ if (argidx+1 < GetSize(args) && args[argidx] == "-app")
{
VerificFormalApplications vfa;
auto apps = vfa.GetApps();
goto check_error;
}
- if (args[argidx] == "-pp" && argidx < GetSize(args))
+ if (argidx < GetSize(args) && args[argidx] == "-pp")
{
const char* filename = nullptr;
const char* module = nullptr;
goto check_error;
}
- if (args[argidx] == "-template" && argidx < GetSize(args))
+ if (argidx < GetSize(args) && args[argidx] == "-template")
{
if (!(argidx < GetSize(args)))
cmd_error(args, argidx, "No template type specified.\n");