1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-17 16:12:42 +08:00
This commit is contained in:
2024-05-28 04:05:37 +08:00
parent 2d851d4872
commit 54fbe8eb0a

View File

@ -17,6 +17,7 @@ func newMemStore(size uint) *memStore {
return &memStore{
size: size,
set: bitset.New(size),
lock: locker.RWLocker{},
}
}