Make this non-inline too; for easier debugging.

This commit is contained in:
Kohei Yoshida 2012-04-09 21:45:19 -04:00
parent 4be657d532
commit 53a40d5e0d
2 changed files with 6 additions and 1 deletions

View file

@ -90,7 +90,7 @@ public:
bool & GetConvergingReference() { return bConverging; }
void StartIteration();
void ResumeIteration();
void IncIteration() { ++nIteration; }
void IncIteration();
void EndIteration();
ScFormulaRecursionList::iterator GetLastIterationStart() { return aLastIterationStart; }

View file

@ -84,6 +84,11 @@ void ScRecursionHelper::ResumeIteration()
aLastIterationStart = GetIterationStart();
}
void ScRecursionHelper::IncIteration()
{
++nIteration;
}
void ScRecursionHelper::EndIteration()
{
aRecursionFormulas.erase( GetIterationStart(), GetIterationEnd());