Fix includes.

This commit is contained in:
Martin Šach 2024-04-26 12:11:59 +02:00 committed by Lukas Matena
parent b8b3cccb40
commit b350aa610d
6 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,4 @@
#include <stack>
#include "PerimeterOrder.hpp"
namespace Slic3r::Arachne::PerimeterOrder {

View File

@ -13,6 +13,7 @@
#include "utils/PolylineStitcher.hpp"
#include "SVG.hpp"
#include "Utils.hpp"
#include "ClipperUtils.hpp"
#include <boost/log/trivial.hpp>

View File

@ -8,6 +8,9 @@
#include "libslic3r/format.hpp" // -> format()
#include "I18N.hpp"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/split.hpp>
#include <cmath>
#include "ImGuiWrapper.hpp"

View File

@ -8,6 +8,7 @@
#include <GL/glew.h>
#include <algorithm>
#include <boost/nowide/convert.hpp>
#include <wx/progdlg.h>
#include <boost/nowide/convert.hpp>

View File

@ -10,6 +10,7 @@
#include <string_view>
#include <vector>
#include <optional>
#include <functional>
#include <imgui/imgui.h>

View File

@ -7,6 +7,8 @@
#include "libslic3r/CustomGCode.hpp"
#include <array>
#include <functional>
#include <vector>
#include <set>