From 3091e9b8f619a5402a7390338e2082d4e20a3dbf Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 30 Aug 2001 17:32:48 -0400 Subject: BUG: fix incorrect deletion of function blockers --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 0e9b41c..2dbe07d 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -147,7 +147,7 @@ cmMakefile::~cmMakefile() } std::set::const_iterator pos; for (pos = m_FunctionBlockers.begin(); - pos != m_FunctionBlockers.end(); ++pos) + pos != m_FunctionBlockers.end(); pos = m_FunctionBlockers.begin()) { cmFunctionBlocker* b = *pos; m_FunctionBlockers.erase(*pos); -- cgit v0.12