mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -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>
|
template<typename Iterator>
|
||||||
struct InterpolateTableContext {
|
struct InterpolateTableContext {
|
||||||
template<typename Iterator>
|
|
||||||
struct Item {
|
struct Item {
|
||||||
double x;
|
double x;
|
||||||
boost::iterator_range<Iterator> it_range_x;
|
boost::iterator_range<Iterator> it_range_x;
|
||||||
double y;
|
double y;
|
||||||
};
|
};
|
||||||
std::vector<Item<Iterator>> table;
|
std::vector<Item> table;
|
||||||
|
|
||||||
static void init(const expr<Iterator> &x) {
|
static void init(const expr<Iterator> &x) {
|
||||||
if (!x.numeric_type())
|
if (!x.numeric_type())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue