Fix Linux build errors

This commit is contained in:
SoftFever 2023-08-31 18:27:05 +08:00
parent a9ae487a3e
commit a63ddc33e2

View file

@ -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())