FIX: Fix missing ExPolygons type declaration
In file included from /run/build/BambuStudio/src/libslic3r/Clipper2Utils.cpp:1: /run/build/BambuStudio/src/libslic3r/Clipper2Utils.hpp:11:1: error: ‘ExPolygons’ does not name a type; did you mean ‘Polygons’? 11 | ExPolygons union_ex_2(const Polygons &expolygons); | ^~~~~~~~~~ | Polygons
This commit is contained in:
parent
35e4db07e9
commit
864ad1715d
|
@ -1,6 +1,7 @@
|
|||
#ifndef slic3r_Clipper2Utils_hpp_
|
||||
#define slic3r_Clipper2Utils_hpp_
|
||||
|
||||
#include "ExPolygon.hpp"
|
||||
#include "Polygon.hpp"
|
||||
#include "Polyline.hpp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue