Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 918510 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/libslic3r/Extruder.hpp (+1 lines)
Lines 3-8 Link Here
3
3
4
#include "libslic3r.h"
4
#include "libslic3r.h"
5
#include "Point.hpp"
5
#include "Point.hpp"
6
#include <optional>
6
7
7
namespace Slic3r {
8
namespace Slic3r {
8
9
(-)a/src/slic3r/GUI/Field.cpp (+1 lines)
Lines 20-25 Link Here
20
#include <wx/tglbtn.h>
20
#include <wx/tglbtn.h>
21
#endif
21
#endif
22
#include <wx/tokenzr.h>
22
#include <wx/tokenzr.h>
23
#include <boost/algorithm/string.hpp>
23
#include <boost/algorithm/string/predicate.hpp>
24
#include <boost/algorithm/string/predicate.hpp>
24
#include <boost/log/trivial.hpp>
25
#include <boost/log/trivial.hpp>
25
#include "OG_CustomCtrl.hpp"
26
#include "OG_CustomCtrl.hpp"
(-)a/src/slic3r/GUI/Preferences.cpp (+1 lines)
Lines 8-13 Link Here
8
8
9
#include <wx/notebook.h>
9
#include <wx/notebook.h>
10
#include <wx/scrolwin.h>
10
#include <wx/scrolwin.h>
11
#include <wx/display.h>
11
#include "Notebook.hpp"
12
#include "Notebook.hpp"
12
#include "ButtonsDescription.hpp"
13
#include "ButtonsDescription.hpp"
13
#include "OG_CustomCtrl.hpp"
14
#include "OG_CustomCtrl.hpp"
(-)a/src/slic3r/GUI/Tab.cpp (+1 lines)
Lines 29-34 Link Here
29
#include <wx/settings.h>
29
#include <wx/settings.h>
30
#include <wx/filedlg.h>
30
#include <wx/filedlg.h>
31
31
32
#include <boost/algorithm/string.hpp>
32
#include <boost/algorithm/string/split.hpp>
33
#include <boost/algorithm/string/split.hpp>
33
#include <boost/algorithm/string/predicate.hpp>
34
#include <boost/algorithm/string/predicate.hpp>
34
#include <boost/algorithm/string/replace.hpp>
35
#include <boost/algorithm/string/replace.hpp>
(-)a/src/libslic3r/ObjectID.hpp (+1 lines)
Lines 2-7 Link Here
2
#define slic3r_ObjectID_hpp_
2
#define slic3r_ObjectID_hpp_
3
3
4
#include <cereal/access.hpp>
4
#include <cereal/access.hpp>
5
#include <cereal/types/base_class.hpp>
5
6
6
namespace Slic3r {
7
namespace Slic3r {
(-)a/src/libslic3r/Format/BBConfig.hpp (+7 lines)
Lines 2-7 Link Here
2
#define slic3r_Format_BBconfig_hpp_
2
#define slic3r_Format_BBconfig_hpp_
3
3
4
#include "miniz_extension.hpp"
4
#include "miniz_extension.hpp"
5
#include <fstream>
6
#include <map>
7
#include "libslic3r/Config.hpp"
8
#include <boost/algorithm/string/replace.hpp>
9
#include <boost/log/trivial.hpp>
10
#include <boost/property_tree/ptree.hpp>
11
#include <boost/property_tree/ini_parser.hpp>
5
12
6
#ifdef __APPLE__
13
#ifdef __APPLE__
7
    #include <boost/filesystem.hpp>
14
    #include <boost/filesystem.hpp>
(-)a/src/libslic3r/GCode/FanMover.cpp (-2 / +1 lines)
Lines 13-21 Link Here
13
#include "../PrintConfig.hpp"
13
#include "../PrintConfig.hpp"
14
#include "../Utils.hpp"
14
#include "../Utils.hpp"
15
#include "Print.hpp"
15
#include "Print.hpp"
16
17
#include <boost/log/trivial.hpp>
18
*/
16
*/
17
#include <boost/log/trivial.hpp>
19
18
20
19
21
namespace Slic3r {
20
namespace Slic3r {
(-)a/src/libslic3r/Format/bbs_3mf.cpp (+2 lines)
Lines 43-53 Link Here
43
#include <boost/property_tree/ptree.hpp>
43
#include <boost/property_tree/ptree.hpp>
44
#include <boost/property_tree/xml_parser.hpp>
44
#include <boost/property_tree/xml_parser.hpp>
45
#include <boost/foreach.hpp>
45
#include <boost/foreach.hpp>
46
#include <boost/thread/mutex.hpp>
46
//#include <openssl/md5.h>
47
//#include <openssl/md5.h>
47
48
48
namespace pt = boost::property_tree;
49
namespace pt = boost::property_tree;
49
50
50
#include <tbb/parallel_reduce.h>
51
#include <tbb/parallel_reduce.h>
52
#include <tbb/parallel_for.h>
51
53
52
#include <expat.h>
54
#include <expat.h>
53
#include <Eigen/Dense>
55
#include <Eigen/Dense>

Return to bug 918510