You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 54: ssb.timeStat.push (newTime.ticks - ssb.lastChange.ticks).int
assigning an int64 to a float64 is the cause and I think it maybe could be fixed just simply by ssb.timeStat.push (newTime.ticks - ssb.lastChange.ticks).float
still running into this issue, now on nim 2.0.0. Is it perhaps to do with using the same name for push(... , value: SomeNumber) and let value = value.float? I am not sure nim handles this name conflict. Confirmed that my change above fixes the issue but a preferred fix would be in the push function`.
Sometimes getting a RangeDefect exception raised in
progress=
with stack trace:I'm not overly familiar with this codebase so I will not suggest any change but this should be an easy fix (maybe?) if I understand the issue right.
The text was updated successfully, but these errors were encountered: