opnsense-ports/cad/camotics/files/patch-src_camotics_contour_TriangleMesh.h
Franco Fichtner 7ad553460a */*: sync with upstream
Taken from: FreeBSD
2022-07-28 13:24:39 +02:00

11 lines
347 B
C

--- src/camotics/contour/TriangleMesh.h.orig 2021-07-27 23:51:08 UTC
+++ src/camotics/contour/TriangleMesh.h
@@ -52,7 +52,7 @@ namespace CAMotics {
struct VertexSort {
- bool operator() (const Vertex *a, const Vertex *b) {return *a < *b;}
+ bool operator() (const Vertex *a, const Vertex *b) const {return *a < *b;}
};