diff options
author | Brad King <brad.king@kitware.com> | 2002-05-10 12:54:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-05-10 12:54:49 (GMT) |
commit | 6b08b83d892672f0a5849af71441cb06dc2b45e8 (patch) | |
tree | 2e6a0d41f8c597416fd7fd3aa263925a60a4baca /Source | |
parent | 6734d3bb88d7d0706d0053380d70d368a9380cf0 (diff) | |
download | CMake-6b08b83d892672f0a5849af71441cb06dc2b45e8.zip CMake-6b08b83d892672f0a5849af71441cb06dc2b45e8.tar.gz CMake-6b08b83d892672f0a5849af71441cb06dc2b45e8.tar.bz2 |
ERR: Added variable initializer.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 5accbaa..43924b6 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -844,7 +844,7 @@ void cmSystemTools::GetArguments(std::string& line, while(!done) { std::string arg; - std::string::size_type endpos; + std::string::size_type endpos=0; bool foundQuoted = quotedArgument.find(line.c_str()); bool foundNormal = normalArgument.find(line.c_str()); |