From 204335d886ab7421e8f38b0b53d4ed070eb93316 Mon Sep 17 00:00:00 2001 From: qydysky <32743305+qydysky@users.noreply.github.com> Date: Thu, 19 Jan 2023 01:33:50 +0800 Subject: [PATCH] fix --- sync/Map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync/Map.go b/sync/Map.go index b6b8a1c..c1c961c 100644 --- a/sync/Map.go +++ b/sync/Map.go @@ -8,7 +8,7 @@ import ( ) type Map struct { - size *atomic.Int64 + size atomic.Int64 m sync.Map } -- 2.39.2