summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTestHandler.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-07-07 02:06:08 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-07-07 02:06:08 (GMT)
commitbc58fe6485930000fcd02c1139843155198941ca (patch)
tree05bfb0726408ff51f92aac3f94a7e176ff400d55 /Source/CTest/cmCTestTestHandler.cxx
parenta4ae5a72a079f55dc8794674e3b8eaf42a9919ae (diff)
downloadCMake-bc58fe6485930000fcd02c1139843155198941ca.zip
CMake-bc58fe6485930000fcd02c1139843155198941ca.tar.gz
CMake-bc58fe6485930000fcd02c1139843155198941ca.tar.bz2
COMP: fix warning
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.cxx')
-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 c294979..90a33cb 100644
--- a/Source/CTest/cmCTestTestHandler.cxx
+++ b/Source/CTest/cmCTestTestHandler.cxx
@@ -1804,7 +1804,7 @@ void cmCTestTestHandler::ExpandTestsToRunInformation(size_t numTests)
// if end isnot specified then we assume we end with the last test
if(end == -1)
{
- end = numTests;
+ end = static_cast<int>(numTests);
}
// if the stride wasn't specified then it defaults to 1