Skip to content

Commit

Permalink
Part: fix inifnite recursion in TopoShape::makEWires()
Browse files Browse the repository at this point in the history
  • Loading branch information
realthunder committed Mar 21, 2024
1 parent 07c85fe commit be6b793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Part/App/TopoShapeEx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<TopoShape>{shape}, op , tol, shared, output);
}

struct EdgePoints {
Expand Down

0 comments on commit be6b793

Please sign in to comment.