diff options
author | Brad King <brad.king@kitware.com> | 2001-02-23 15:40:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-02-23 15:40:13 (GMT) |
commit | d31ce244136205bc006967090ddd4d6fdde5b3cb (patch) | |
tree | 7c3c96c3a906ed4ba33d7ecc0ab616db8a0e0373 /Source/cmUnixMakefileGenerator.cxx | |
parent | 8f0ac1e9bd4aaf012c10e0044465c580b6f56144 (diff) | |
download | CMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.zip CMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.tar.gz CMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.tar.bz2 |
ERR: Fixed warnings (int->unsigned int and a few others).
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index e1bcb8f..58ac548 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -105,7 +105,7 @@ void cmUnixMakefileGenerator::OutputDependLibraries(std::ostream& fout) { std::vector<std::string>& libs = m_Makefile->GetLinkLibraries(); std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories(); - std::vector<std::string>::iterator dir, lib, endlibs, enddirs; + std::vector<std::string>::iterator dir, lib; // Search the list of libraries that will be linked into // the executable for(lib = libs.begin(); lib != libs.end(); ++lib) |