From 5d4bee74bc16256a82bea39fc0ff9a589683f22e Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Mon, 17 Jul 2023 17:58:10 +0200 Subject: [PATCH] ArcWelder: Fixed includes in Wipe.hpp --- src/libslic3r/GCode/Wipe.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/GCode/Wipe.hpp b/src/libslic3r/GCode/Wipe.hpp index a088aa3904..f02a77fa7f 100644 --- a/src/libslic3r/GCode/Wipe.hpp +++ b/src/libslic3r/GCode/Wipe.hpp @@ -1,8 +1,9 @@ #ifndef slic3r_GCode_Wipe_hpp_ #define slic3r_GCode_Wipe_hpp_ -#include "Geometry/ArcWelder.hpp" #include "SmoothPath.hpp" + +#include "../Geometry/ArcWelder.hpp" #include "../Point.hpp" #include "../PrintConfig.hpp"