diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-28 18:25:26 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-28 18:25:26 (GMT) |
commit | 1620242ac444fe71031471039bab64092e692d17 (patch) | |
tree | fc494a1ef680cbf936acae1fb5fc9b7a83481750 | |
parent | e34c83540dd324c42c5627e96b8f05b2f79aadb3 (diff) | |
download | CMake-1620242ac444fe71031471039bab64092e692d17.zip CMake-1620242ac444fe71031471039bab64092e692d17.tar.gz CMake-1620242ac444fe71031471039bab64092e692d17.tar.bz2 |
ENH: remove warning
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 9e221cc..367124f 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2494,7 +2494,7 @@ void cmLocalUnixMakefileGenerator::OutputMakeVariables(std::ostream& fout) std::string arg = m_Makefile->GetDefinition("CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES"); std::vector<std::string> implicitIncludeVec; cmSystemTools::ExpandListArgument(arg, implicitIncludeVec); - for(int k =0; k < implicitIncludeVec.size(); k++) + for(unsigned int k =0; k < implicitIncludeVec.size(); k++) { implicitIncludes[implicitIncludeVec[k]] = implicitIncludeVec[k]; } |