Skip to content

Commit

Permalink
Geometry2D.ipp: オーバーロードの受け取るurbgをstd::forwardで転送
Browse files Browse the repository at this point in the history
Co-authored-by: Raclamusi <[email protected]>
  • Loading branch information
Appbird and Raclamusi authored Nov 14, 2024
1 parent 01e1b12 commit cc47854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Siv3D/include/Siv3D/detail/Geometry2D.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -1849,7 +1849,7 @@ namespace s3d
SIV3D_CONCEPT_URBG_
Circle SmallestEnclosingCircle(Array<Vec2> points, URBG&& urbg, double tolerance)
{
return SmallestEnclosingCircle(std::move(points), tolerance, urbg);
return SmallestEnclosingCircle(std::move(points), tolerance, std::forward<URBG>(urbg));
}
}
}

0 comments on commit cc47854

Please sign in to comment.