COMP: explicitely cast to int to silence warning with msvc8

Alex
This commit is contained in:
Alexander Neundorf 2007-08-28 16:27:10 -04:00
parent c3b42e90ed
commit fc9f19b202
1 changed files with 1 additions and 1 deletions

View File

@ -1497,7 +1497,7 @@ void cmMakefile::AddSourceGroup(const std::vector<std::string>& name,
cmSourceGroup* sg = 0;
std::vector<std::string> currentName;
int i = 0;
const int lastElement = name.size()-1;
const int lastElement = static_cast<int>(name.size()-1);
for(i=lastElement; i>=0; --i)
{
currentName.assign(name.begin(), name.begin()+i+1);