summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-21 13:47:10 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-21 13:47:10 (GMT)
commit6156928549247c0d3ede3522aba18a1e93887e7d (patch)
treec8ecbe814f0022dc581fcb9c4aa0f2d6a7882735 /Source
parentf7fae15d39d6e290686487778485734227415088 (diff)
downloadCMake-6156928549247c0d3ede3522aba18a1e93887e7d.zip
CMake-6156928549247c0d3ede3522aba18a1e93887e7d.tar.gz
CMake-6156928549247c0d3ede3522aba18a1e93887e7d.tar.bz2
WAR: fix warning
Diffstat (limited to 'Source')
-rw-r--r--Source/cmQTWrapUICommand.cxx1
-rw-r--r--Source/cmVariableRequiresCommand.cxx2
2 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx
index 608bbf3..a27470c 100644
--- a/Source/cmQTWrapUICommand.cxx
+++ b/Source/cmQTWrapUICommand.cxx
@@ -119,7 +119,6 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& args)
m_WrapHeadersClasses.push_back(header_file);
m_WrapSourcesClasses.push_back(source_file);
m_WrapMocClasses.push_back(moc_file);
- unsigned int last_files=m_WrapSourcesClasses.size()-1;
m_Makefile->AddSource(header_file,
m_HeaderList.c_str());
m_Makefile->AddSource(source_file,
diff --git a/Source/cmVariableRequiresCommand.cxx b/Source/cmVariableRequiresCommand.cxx
index a4352b1..4c12027 100644
--- a/Source/cmVariableRequiresCommand.cxx
+++ b/Source/cmVariableRequiresCommand.cxx
@@ -63,7 +63,7 @@ void cmVariableRequiresCommand::FinalPass()
std::string resultVarible = m_Arguments[1];
bool requirementsMet = true;
std::string notSet;
- for(int i = 2; i < m_Arguments.size(); ++i)
+ for(unsigned int i = 2; i < m_Arguments.size(); ++i)
{
if(!m_Makefile->IsOn(m_Arguments[i].c_str()))
{