summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-07-17 20:15:11 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-07-17 20:15:11 (GMT)
commiteb5d0a7f61f8dbceab0e3c503d6dc057d64994e5 (patch)
tree67162739e2e494c96cba324b9ecc6e927d105dd0 /Source/CTest
parentdf9c3b1a6846a77a3f0c0cada1cae9748040c5f3 (diff)
downloadCMake-eb5d0a7f61f8dbceab0e3c503d6dc057d64994e5.zip
CMake-eb5d0a7f61f8dbceab0e3c503d6dc057d64994e5.tar.gz
CMake-eb5d0a7f61f8dbceab0e3c503d6dc057d64994e5.tar.bz2
ENH: fix warning
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestTestHandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx
index 0dffb26..de98a38 100644
--- a/Source/CTest/cmCTestTestHandler.cxx
+++ b/Source/CTest/cmCTestTestHandler.cxx
@@ -1109,7 +1109,7 @@ void cmCTestTestHandler::ComputeTestList()
// Set the TestList to the final list of all test
this->TestList = finalList;
std::string::size_type max = this->CTest->GetMaxTestNameWidth();
- for (ListOfTests::iterator it = this->TestList.begin();
+ for (it = this->TestList.begin();
it != this->TestList.end(); it ++ )
{
cmCTestTestProperties& p = *it;