diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-29 13:57:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-29 13:57:49 (GMT) |
commit | 94337f8015c81a3f819d4d345f291ef46c7cd178 (patch) | |
tree | 6868d5e46233ae882ef4ef4a76df532ed534d218 /Source/cmMakefile.cxx | |
parent | efa44fc1f51574331703d15d8e079d6887d932f5 (diff) | |
download | CMake-94337f8015c81a3f819d4d345f291ef46c7cd178.zip CMake-94337f8015c81a3f819d4d345f291ef46c7cd178.tar.gz CMake-94337f8015c81a3f819d4d345f291ef46c7cd178.tar.bz2 |
clean up a bit
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 0f57e5e..0e9b41c 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -335,9 +335,7 @@ bool cmMakefile::ReadListFile(const char* filename, const char* external) } // add this list file to the list of dependencies m_ListFiles.push_back( filenametoread); - std::string name; - std::vector<std::string> arguments; - int numberFunctions = lf->m_Functions.size(); + const int numberFunctions = lf->m_Functions.size(); for(int i =0; i < numberFunctions; ++i) { cmListFileFunction& curFunction = lf->m_Functions[i]; |