mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 17:12:07 +00:00
libslic3r: Fix declaration in FlushVolPredictor.hpp
In file included from src/libslic3r/FlushVolPredictor.cpp:1:
src/libslic3r/FlushVolPredictor.hpp:44:34: error: ‘string’ in namespace ‘std’ does not name a type
44 | FlushVolPredictor(const std::string& data_file);
| ^~~~~~
src/libslic3r/FlushVolPredictor.hpp:49:5: error: ‘uint64_t’ does not name a type
49 | uint64_t generate_hash_key(const RGB& from, const RGB& to);
| ^~~~~~~~
In file included from src/libslic3r/FlushVolPredictor.cpp:1:
src/libslic3r/FlushVolPredictor.hpp:44:34: error: ‘string’ in namespace ‘std’ does not name a type
44 | FlushVolPredictor(const std::string& data_file);
| ^~~~~~
(cherry picked from commit 126dfea02729e16f9e64d6634a762da8b665d6e2)
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
#ifndef FLUSH_VOL_PREDICTOR_HPP
|
||||
#define FLUSH_VOL_PREDICTOR_HPP
|
||||
|
||||
#include<cstdint>
|
||||
#include<unordered_map>
|
||||
#include<string>
|
||||
#include<vector>
|
||||
|
||||
namespace FlushPredict
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user