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
With the change to make the loopTimes variable thread safe, the actual values are now stored in the Atomic values, the didSet no longer gets called because the loopTimes atomic object itself does not get set, it's the atomic object's .values property that gets set. So to fix this, need to remove the didSet method for the variable and instead update the index manually whenever the loopTimes.values is set.
The text was updated successfully, but these errors were encountered:
With the change to make the loopTimes variable thread safe, the actual values are now stored in the Atomic values, the didSet no longer gets called because the loopTimes atomic object itself does not get set, it's the atomic object's
.values
property that gets set. So to fix this, need to remove thedidSet
method for the variable and instead update the index manually whenever theloopTimes.values
is set.The text was updated successfully, but these errors were encountered: