add missing includes (#5691)

* add missing includes

Building without precompiled header support revealed some missing
includes that are added with this change for code health purposes.
Those missing includes were hidden by precompiled header support due to
the fact that the precompiled header file provides some definitions
despite not being defined in directly or indirectly included header
files.
This commit is contained in:
Robert Schiele 2024-06-29 06:21:52 +02:00 committed by GitHub
parent b18c0c76ae
commit f5c5f322d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 0 deletions

View file

@ -1,10 +1,12 @@
#include "Thumbnails.hpp"
#include "../miniz_extension.hpp"
#include "format.hpp"
#include <qoi/qoi.h>
#include <jpeglib.h>
#include <jerror.h>
#include <vector>
#include <boost/algorithm/string.hpp>
namespace Slic3r::GCodeThumbnails {

View file

@ -4,6 +4,7 @@
#include "../Point.hpp"
#include "../PrintConfig.hpp"
#include "ThumbnailData.hpp"
#include "../enum_bitmask.hpp"
#include <vector>
#include <memory>

View file

@ -2,6 +2,7 @@
#include "ClipperUtils.hpp"
#include "Config.hpp"
#include "I18N.hpp"
#include "format.hpp"
#include "GCode/Thumbnails.hpp"
#include <set>