From fe492f818a51829175c84c9db966950c0f3c829b Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Fri, 27 Jul 2018 22:07:22 -0500 Subject: [PATCH] Added std::map and Slic3r::Polygon to include list, sorted includes. --- xs/src/libslic3r/SupportMaterial.hpp | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/xs/src/libslic3r/SupportMaterial.hpp b/xs/src/libslic3r/SupportMaterial.hpp index 75668fa82..719b70586 100644 --- a/xs/src/libslic3r/SupportMaterial.hpp +++ b/xs/src/libslic3r/SupportMaterial.hpp @@ -1,20 +1,24 @@ #ifndef slic3r_SupportMaterial_hpp_ #define slic3r_SupportMaterial_hpp_ +#include +#include +#include #include #include -#include -#include + #include "libslic3r.h" -#include "PrintConfig.hpp" -#include "Flow.hpp" -#include "Layer.hpp" -#include "Geometry.hpp" -#include "Print.hpp" + #include "ClipperUtils.hpp" #include "ExPolygon.hpp" +#include "Fill/Fill.hpp" +#include "Flow.hpp" +#include "Geometry.hpp" +#include "Layer.hpp" +#include "Polygon.hpp" +#include "Print.hpp" +#include "PrintConfig.hpp" #include "SVG.hpp" -#include using namespace std;