[cmake-commits] martink committed cmCTestTestHandler.cxx 1.51 1.52

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Jan 26 09:31:47 EST 2007


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

Modified Files:
	cmCTestTestHandler.cxx 
Log Message:
COMP: fix warning


Index: cmCTestTestHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestTestHandler.cxx,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- cmCTestTestHandler.cxx	25 Jan 2007 16:16:16 -0000	1.51
+++ cmCTestTestHandler.cxx	26 Jan 2007 14:31:44 -0000	1.52
@@ -932,7 +932,8 @@
       }
     
     // process this one test
-    this->ProcessOneTest(&(*it), passed, failed, cnt, tmsize);
+    this->ProcessOneTest(&(*it), passed, failed, cnt, 
+                         static_cast<int>(tmsize));
     }
 
   this->EndTest = this->CTest->CurrentTime();



More information about the Cmake-commits mailing list