FIX: Fix missing std:: declarations in ToolOrderUtils
/run/build/BambuStudio/src/libslic3r/GCode/ToolOrderUtils.hpp:14:26: error: ‘numeric_limits’ is not a member of ‘std’ 14 | const int INF = std::numeric_limits<int>::max(); | ^~~~~~~~~~~~~~ /run/build/BambuStudio/src/libslic3r/GCode/ToolOrderUtils.cpp:545:66: error: ‘unordered_set’ in namespace ‘std’ does not name a template type 545 | static std::vector<T> collect_filaments_in_groups(const std::unordered_set<unsigned int>& group, const std::vector<unsigned int>& filament_list) { | ^~~~~~~~~~~~~
This commit is contained in:
parent
58754264c6
commit
059e18aa38
|
@ -4,7 +4,9 @@
|
|||
#include <vector>
|
||||
#include <optional>
|
||||
#include <functional>
|
||||
#include <limits>
|
||||
#include <memory>
|
||||
#include <unordered_set>
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
|
|
Loading…
Reference in New Issue