summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-05-07 13:11:39 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-05-07 13:11:39 (GMT)
commitdb859464f2d8cc07f6fa5c238c187cd1e3566e5c (patch)
treeb270dad664ea6082bd8a1dbabb877bf48cab3660 /Source/cmUnixMakefileGenerator.cxx
parent4720732acb9c6042dc5570d0f6c2247ea96484ed (diff)
downloadCMake-db859464f2d8cc07f6fa5c238c187cd1e3566e5c.zip
CMake-db859464f2d8cc07f6fa5c238c187cd1e3566e5c.tar.gz
CMake-db859464f2d8cc07f6fa5c238c187cd1e3566e5c.tar.bz2
WNG: remove a warning
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index 2bbd1e9..60c5cc4 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -2106,7 +2106,7 @@ void cmUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
const char* commands[] = { command, command2, command3, command4 };
- for (int i = 0; i < sizeof(commands) / sizeof(commands[0]); ++i)
+ for (unsigned int i = 0; i < sizeof(commands) / sizeof(commands[0]); ++i)
{
if(commands[i])
{