Fixed CompileSet so it returns true when there is nothing to compile at all.

This commit is contained in:
Robert Osfield
2011-01-18 11:20:53 +00:00
parent bf99528322
commit 57cf04a6bb

View File

@@ -441,7 +441,7 @@ bool IncrementalCompileOperation::CompileSet::compile(CompileInfo& compileInfo)
return _numberCompileListsToCompile==0;
}
}
return false;
return _numberCompileListsToCompile==0;
}
/////////////////////////////////////////////////////////////////