From be6b793036e6a3bd1e64bfb2d0cd046275b6434a Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Thu, 21 Mar 2024 21:45:49 +0800 Subject: [PATCH] Part: fix inifnite recursion in TopoShape::makEWires() --- src/Mod/Part/App/TopoShapeEx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/App/TopoShapeEx.cpp b/src/Mod/Part/App/TopoShapeEx.cpp index acc6f8d845e8..cc210ac87a83 100644 --- a/src/Mod/Part/App/TopoShapeEx.cpp +++ b/src/Mod/Part/App/TopoShapeEx.cpp @@ -2987,7 +2987,7 @@ TopoShape &TopoShape::makEWires(const TopoShape &shape, bool shared, TopoShapeMap *output) { - return makEWires({shape}, op , tol, shared, output); + return makEWires(std::vector{shape}, op , tol, shared, output); } struct EdgePoints {