summarylogtreecommitdiffstats
path: root/clipper.core.h.patch
blob: 51177a3282f5d34c607ae0d17b98a1790cbf20b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- ./build/bext/manifold/manifold/src/third_party/clipper2/include/clipper2/clipper.core.h	2024-11-08 16:45:27.205735113 -0500
+++ ./build/bext/manifold/manifold/src/third_party/clipper2/include/clipper2/clipper.core.h_patch	2024-11-08 18:42:49.950337130 -0500
@@ -178,7 +178,7 @@
     Point(const T2 x_, const T2 y_) { Init(x_, y_); }
 
     template <typename T2>
-    explicit Point<T>(const Point<T2>& p) { Init(p.x, p.y); }
+    explicit Point(const Point<T2>& p) { Init(p.x, p.y); }
 
     Point operator * (const double scale) const
     {