Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukáš Hejl <hejl.lukas@gmail.com>2021-05-27 17:47:31 +0300
committerLukáš Hejl <hejl.lukas@gmail.com>2021-05-27 17:47:31 +0300
commit281ac1f2f1518004aabefae6ab798488aae82d1e (patch)
treeed0e6ef7baab1dab6f0e18f9e15db628e7da6ee0
parent3e28b4c967bed04bb1868ed083bc3a37bd625c26 (diff)
Added missing includes (GCC 9.3)
-rw-r--r--src/libslic3r/ElephantFootCompensation.hpp1
-rw-r--r--src/libslic3r/PrintObjectSlice.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libslic3r/ElephantFootCompensation.hpp b/src/libslic3r/ElephantFootCompensation.hpp
index beb17d10b..596a3e958 100644
--- a/src/libslic3r/ElephantFootCompensation.hpp
+++ b/src/libslic3r/ElephantFootCompensation.hpp
@@ -2,6 +2,7 @@
#define slic3r_ElephantFootCompensation_hpp_
#include "libslic3r.h"
+#include "ExPolygon.hpp"
#include <vector>
namespace Slic3r {
diff --git a/src/libslic3r/PrintObjectSlice.cpp b/src/libslic3r/PrintObjectSlice.cpp
index 1499e1c70..b46ef36b1 100644
--- a/src/libslic3r/PrintObjectSlice.cpp
+++ b/src/libslic3r/PrintObjectSlice.cpp
@@ -3,6 +3,7 @@
#include "Layer.hpp"
#include "MultiMaterialSegmentation.hpp"
#include "Print.hpp"
+#include "ClipperUtils.hpp"
#include <boost/log/trivial.hpp>