[cmake-commits] alex committed cmMakefile.cxx 1.384 1.385

cmake-commits at cmake.org cmake-commits at cmake.org
Fri May 4 09:50:41 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv28785

Modified Files:
	cmMakefile.cxx 
Log Message:

COMP: fix warning on VS8: conversion unsigned int -> size_t

Alex


Index: cmMakefile.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefile.cxx,v
retrieving revision 1.384
retrieving revision 1.385
diff -u -d -r1.384 -r1.385
--- cmMakefile.cxx	1 May 2007 15:46:47 -0000	1.384
+++ cmMakefile.cxx	4 May 2007 13:50:39 -0000	1.385
@@ -2756,7 +2756,7 @@
 std::string cmMakefile::GetListFileStack()
 {
   cmOStringStream tmp;
-  unsigned int depth = this->ListFileStack.size();
+  size_t depth = this->ListFileStack.size();
   std::deque<cmStdString>::iterator it = this->ListFileStack.end();
   do
     {



More information about the Cmake-commits mailing list