From ed7a32ebe437c41f995dcc46ea0037e821daa25f Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 11 Jul 2002 14:20:39 -0400 Subject: [PATCH] BUG: fix for compile with hp --- Source/cmMakefile.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 90e78d2bf..496704a36 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -126,7 +126,7 @@ cmMakefile::~cmMakefile() delete d->second; } } - std::list::const_iterator pos; + std::list::iterator pos; for (pos = m_FunctionBlockers.begin(); pos != m_FunctionBlockers.end(); pos = m_FunctionBlockers.begin()) { @@ -275,7 +275,7 @@ bool cmMakefile::ReadListFile(const char* filename, const char* external) m_cmCurrentListFile = filename; } // loop over current function blockers and record them - std::list::const_iterator pos; + std::list::iterator pos; for (pos = m_FunctionBlockers.begin(); pos != m_FunctionBlockers.end(); ++pos) { @@ -354,7 +354,7 @@ bool cmMakefile::ReadListFile(const char* filename, const char* external) if (filename) { // loop over all function blockers to see if any block this command - std::list::const_iterator pos; + std::list::iterator pos; for (pos = m_FunctionBlockers.begin(); pos != m_FunctionBlockers.end(); ++pos) { @@ -1232,7 +1232,7 @@ bool cmMakefile::IsFunctionBlocked(const char *name, } // loop over all function blockers to see if any block this command - std::list::const_iterator pos; + std::list::iterator pos; std::vector expandedArguments = args; for(std::vector::iterator i = expandedArguments.begin(); i != expandedArguments.end(); ++i)