From 72471d9b35b56da85deea6b90ede0b6ad459ce33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 20 Apr 2023 12:42:36 +0800 Subject: [PATCH] Fix atomic types --- common/atomic/types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/atomic/types.go b/common/atomic/types.go index 12f37fb..6c3b5f2 100644 --- a/common/atomic/types.go +++ b/common/atomic/types.go @@ -13,3 +13,7 @@ type ( Uintptr = atomic.Uintptr Value = atomic.Value ) + +type Pointer[T any] struct { + atomic.Pointer[T] +}