From 711ec0506bb7f8b236bacb204633a23c705bccdd Mon Sep 17 00:00:00 2001 From: Robert Schiele Date: Mon, 23 Sep 2024 13:26:18 +0200 Subject: [PATCH] Fix building errors when precompiled header support is disabled (#6879) Here are more missing header files recently identified by building without precompiled header support. --- src/libslic3r/ClipperZUtils.hpp | 1 + src/libslic3r/Slicing.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/libslic3r/ClipperZUtils.hpp b/src/libslic3r/ClipperZUtils.hpp index 001a3f2daa..7465bd31a4 100644 --- a/src/libslic3r/ClipperZUtils.hpp +++ b/src/libslic3r/ClipperZUtils.hpp @@ -6,6 +6,7 @@ #include #include +#include namespace Slic3r { diff --git a/src/libslic3r/Slicing.hpp b/src/libslic3r/Slicing.hpp index d6cd7dcb41..6ba3403bba 100644 --- a/src/libslic3r/Slicing.hpp +++ b/src/libslic3r/Slicing.hpp @@ -11,6 +11,7 @@ #include "libslic3r.h" #include "Utils.hpp" +#include "Point.hpp" namespace Slic3r {