diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 24126f94d..8d2286122 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1497,7 +1497,7 @@ void cmMakefile::AddSourceGroup(const std::vector& name, cmSourceGroup* sg = 0; std::vector currentName; int i = 0; - const int lastElement = name.size()-1; + const int lastElement = static_cast(name.size()-1); for(i=lastElement; i>=0; --i) { currentName.assign(name.begin(), name.begin()+i+1);