Fix atomic types

This commit is contained in:
世界 2023-04-20 12:42:36 +08:00
parent 5fae6fa434
commit 72471d9b35
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -13,3 +13,7 @@ type (
Uintptr = atomic.Uintptr
Value = atomic.Value
)
type Pointer[T any] struct {
atomic.Pointer[T]
}