Przeglądaj źródła

COMP: explicitely cast to int to silence warning with msvc8

Alex
Alexander Neundorf 18 lat temu
rodzic
commit
fc9f19b202
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Source/cmMakefile.cxx

+ 1 - 1
Source/cmMakefile.cxx

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