diff options
author | Brad King <brad.king@kitware.com> | 2001-04-17 11:42:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-04-17 11:42:33 (GMT) |
commit | c025838c73891917fbc4affc298476cba246b0f9 (patch) | |
tree | 6433a0e1831b481e98b770d57883609967efb6fe /Source | |
parent | 7155d1f68b5823d7b5eacdfbbb75eeca347bbfc1 (diff) | |
download | CMake-c025838c73891917fbc4affc298476cba246b0f9.zip CMake-c025838c73891917fbc4affc298476cba246b0f9.tar.gz CMake-c025838c73891917fbc4affc298476cba246b0f9.tar.bz2 |
ERR: Removed unused variable.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 8e67000..c1d4958 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -221,7 +221,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout) // the executable for(lib = libs.begin(); lib != libs.end(); ++lib) { - bool found = false; // loop over the list of directories that the libraries might // be in, looking for an ADD_LIBRARY(lib...) line. This would // be stored in the cache @@ -234,7 +233,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout) libpath += *lib; libpath += "${CMAKE_LIB_EXT}"; fout << libpath << " "; - found = true; } } |