diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-14 12:55:43 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-14 12:55:43 (GMT) |
commit | 6174100b923738ccad41107dcc4bcd256622f799 (patch) | |
tree | 2e702dd0eec38f47c20e89976d6d2831f583bc67 /Source | |
parent | e61aa37cdf21018b9e24c13778dc1c2d03ac176a (diff) | |
download | CMake-6174100b923738ccad41107dcc4bcd256622f799.zip CMake-6174100b923738ccad41107dcc4bcd256622f799.tar.gz CMake-6174100b923738ccad41107dcc4bcd256622f799.tar.bz2 |
ENH: remove warning
Diffstat (limited to 'Source')
-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 4a757cc..083bdd1 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -4842,7 +4842,7 @@ void cmCTest::SetTestsToRunInformation(const char* in) int end = -1; int stride = -1; std::string::size_type pos = 0; - std::string::size_type pos2 = 0; + std::string::size_type pos2; // read start if(GetNextNumber(testArgs, start, pos, pos2)) { |