Kaydet (Commit) 53a40d5e authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Make this non-inline too; for easier debugging.

üst 4be657d5
......@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment