diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-08-31 13:50:35 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-08-31 13:50:35 (GMT) |
commit | 5a5cc522309a21cda8449912f457282f941641e1 (patch) | |
tree | 838420fab50ac0080a4ad2ff08193c731642f9ce /Source/CTest/cmCTestMultiProcessHandler.h | |
parent | bf830eea5efd1fc4e15b8b30e295f1da5e3aa2b0 (diff) | |
download | CMake-5a5cc522309a21cda8449912f457282f941641e1.zip CMake-5a5cc522309a21cda8449912f457282f941641e1.tar.gz CMake-5a5cc522309a21cda8449912f457282f941641e1.tar.bz2 |
Fixed conversion warning on 64 bit machines
Diffstat (limited to 'Source/CTest/cmCTestMultiProcessHandler.h')
-rw-r--r-- | Source/CTest/cmCTestMultiProcessHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestMultiProcessHandler.h b/Source/CTest/cmCTestMultiProcessHandler.h index cb3aecb..34df780 100644 --- a/Source/CTest/cmCTestMultiProcessHandler.h +++ b/Source/CTest/cmCTestMultiProcessHandler.h @@ -81,9 +81,9 @@ protected: // map from test number to set of depend tests TestMap Tests; //Total number of tests we'll be running - int Total; + size_t Total; //Number of tests that are complete - int Completed; + size_t Completed; //list of test properties (indices concurrent to the test map) PropertiesMap Properties; std::map<int, bool> TestRunningMap; |