minor backwards fix

This commit is contained in:
Ken Martin 2004-05-03 15:33:42 -04:00
parent 22d69a944a
commit 0d3bbe8123
1 changed files with 7 additions and 0 deletions

View File

@ -153,6 +153,13 @@ bool cmIfCommand::IsTrue(const std::vector<std::string> &args,
const char *def;
const char *def2;
// handle empty invocation
if (args.size() < 1)
{
isValid = true;
return false;
}
// store the reduced args in this vector
std::deque<std::string> newArgs;
int reducible = 1;