Skip to content

Commit

Permalink
Fix Linux build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Aug 31, 2023
1 parent a9ae487 commit a63ddc3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libslic3r/PlaceholderParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit a63ddc3

Please sign in to comment.