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
There are a few places where atomic counters are maintained using atomic.AddInt{32, 64} and atomic.LoadInt{32,64}.
With go 1.19 these can be simplified by using atomic.Int32 or atomic.Int64
The text was updated successfully, but these errors were encountered:
There are a few places where atomic counters are maintained using atomic.AddInt{32, 64} and atomic.LoadInt{32,64}.
With go 1.19 these can be simplified by using atomic.Int32 or atomic.Int64
The text was updated successfully, but these errors were encountered: