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:
Bastien Nocera 2025-03-25 16:35:40 +01:00 committed by Lane.Wei
parent 35e4db07e9
commit 864ad1715d
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#ifndef slic3r_Clipper2Utils_hpp_
#define slic3r_Clipper2Utils_hpp_
#include "ExPolygon.hpp"
#include "Polygon.hpp"
#include "Polyline.hpp"