mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 15:13:58 -06:00
Fix Linux build errors
This commit is contained in:
parent
a9ae487a3e
commit
a63ddc33e2
1 changed files with 1 additions and 2 deletions
|
@ -1122,13 +1122,12 @@ namespace client
|
|||
|
||||
template<typename Iterator>
|
||||
struct InterpolateTableContext {
|
||||
template<typename Iterator>
|
||||
struct Item {
|
||||
double x;
|
||||
boost::iterator_range<Iterator> it_range_x;
|
||||
double y;
|
||||
};
|
||||
std::vector<Item<Iterator>> table;
|
||||
std::vector<Item> table;
|
||||
|
||||
static void init(const expr<Iterator> &x) {
|
||||
if (!x.numeric_type())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue