diff options
author | Brad King <brad.king@kitware.com> | 2004-04-23 12:50:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-04-23 12:50:47 (GMT) |
commit | 32a6a8fb0c606bfce2fa8da947afaefc47268c1e (patch) | |
tree | 4866e5c445b80105b8da41b2de3f134addae8f1e /Source/cmCTest.cxx | |
parent | 724019f91c556248c5172ade5621a330dcd4cc48 (diff) | |
download | CMake-32a6a8fb0c606bfce2fa8da947afaefc47268c1e.zip CMake-32a6a8fb0c606bfce2fa8da947afaefc47268c1e.tar.gz CMake-32a6a8fb0c606bfce2fa8da947afaefc47268c1e.tar.bz2 |
ERR: Fixed unused variable assignment warning.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 051691c..fbb64e7 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -4976,7 +4976,7 @@ void cmCTest::ExpandTestsToRunInformation(int numTests) return; } - int start = -1; + int start; int end = -1; int stride = -1; std::string::size_type pos = 0; |