Make this non-inline too; for easier debugging.
This commit is contained in:
parent
4be657d532
commit
53a40d5e0d
2 changed files with 6 additions and 1 deletions
|
@ -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; }
|
||||
|
|
|
@ -84,6 +84,11 @@ void ScRecursionHelper::ResumeIteration()
|
|||
aLastIterationStart = GetIterationStart();
|
||||
}
|
||||
|
||||
void ScRecursionHelper::IncIteration()
|
||||
{
|
||||
++nIteration;
|
||||
}
|
||||
|
||||
void ScRecursionHelper::EndIteration()
|
||||
{
|
||||
aRecursionFormulas.erase( GetIterationStart(), GetIterationEnd());
|
||||
|
|
Loading…
Reference in a new issue