From cc478543e9891079f793b3a14c1f9274173f75c5 Mon Sep 17 00:00:00 2001 From: Appbird <39240044+Appbird@users.noreply.github.com> Date: Fri, 15 Nov 2024 08:32:42 +0900 Subject: [PATCH] =?UTF-8?q?Geometry2D.ipp:=20=E3=82=AA=E3=83=BC=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=83=AD=E3=83=BC=E3=83=89=E3=81=AE=E5=8F=97=E3=81=91?= =?UTF-8?q?=E5=8F=96=E3=82=8Burbg=E3=82=92std::forward=E3=81=A7=E8=BB=A2?= =?UTF-8?q?=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Raclamusi <61970673+Raclamusi@users.noreply.github.com> --- Siv3D/include/Siv3D/detail/Geometry2D.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Siv3D/include/Siv3D/detail/Geometry2D.ipp b/Siv3D/include/Siv3D/detail/Geometry2D.ipp index ebc7b1dcc..ec141fda1 100644 --- a/Siv3D/include/Siv3D/detail/Geometry2D.ipp +++ b/Siv3D/include/Siv3D/detail/Geometry2D.ipp @@ -1849,7 +1849,7 @@ namespace s3d SIV3D_CONCEPT_URBG_ Circle SmallestEnclosingCircle(Array points, URBG&& urbg, double tolerance) { - return SmallestEnclosingCircle(std::move(points), tolerance, urbg); + return SmallestEnclosingCircle(std::move(points), tolerance, std::forward(urbg)); } } }