Resolve "Stack inspector overflow"
Closes #653 (closed)
The StackProcess class has an internal variable, unsigned long int iStep_ = 0;
and a method to return this getStep() const { return iStep_; }
.
Previously, this was returned as an int which causes overflow errors but now returns unsigned long int
.
Edited by Alan Coleman