Ninja: remove int/size_t warning

This commit is contained in:
Peter Kuemmel 2012-07-06 09:46:00 +02:00 committed by David Cole
parent 6332ba5a58
commit 990f77eab3
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ void cmGlobalNinjaGenerator::AddRule(const std::string& name,
restat,
generator);
this->RuleCmdLength[name] = command.size();
this->RuleCmdLength[name] = (int) command.size();
}
bool cmGlobalNinjaGenerator::HasRule(const std::string &name)