From 381f1edb806aa967fefaedae9d4ed6edeb84fdb2 Mon Sep 17 00:00:00 2001 From: mklee Date: Fri, 8 Dec 2023 17:08:14 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=9D=B4=EB=AF=BC=EC=9A=B0]=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=EA=B0=80=20=EC=95=84=EB=8B=88=EB=9D=BC=20=EC=A3=BC?= =?UTF-8?q?=EC=86=8C=EA=B0=91=EC=9D=B4=20=EB=82=98=EC=99=80=EC=84=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20(=EB=8C=80=EB=A6=AC=20=EC=BB=A4=EB=B0=8B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/member_container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/member_container.go b/core/member_container.go index 7259ce8..eb4b459 100644 --- a/core/member_container.go +++ b/core/member_container.go @@ -95,7 +95,7 @@ func (p *memberContainerPtr[K, T]) contains(key K, out *T) bool { return false } if out != nil { - out = &found + *out = found } return true }