mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-25 17:18:49 -07: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:
parent
b71d14b526
commit
ea4357df3e
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue