diff options
Diffstat (limited to 'Source/cmForEachCommand.cxx')
-rw-r--r-- | Source/cmForEachCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmForEachCommand.cxx b/Source/cmForEachCommand.cxx index 03f6d72..c36d11b 100644 --- a/Source/cmForEachCommand.cxx +++ b/Source/cmForEachCommand.cxx @@ -58,7 +58,7 @@ IsFunctionBlocked(const char *name, const std::vector<std::string> &args, for( ; j != m_Args.end(); ++j) { // perform string replace - for(int c = 0; c < m_Commands.size(); ++c) + for(unsigned int c = 0; c < m_Commands.size(); ++c) { std::vector<std::string> newArgs; for (std::vector<std::string>::const_iterator k = |