IAP GITLAB

Skip to content

Resolve "Stack inspector overflow"

Alan Coleman requested to merge 653-stack-inspector-overflow into master

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

Merge request reports