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)