Я пытаюсь удалить все заказы, в которых есть старая пицца более 3 дней:
У меня есть этот вектор пар:
std::vector<std::pair<Client,Order>> x;
x.push_back(std::make_pair(Client(2,"Anca"),Order(3,1)));
x.push_back(std::make_pair(Client(16,"Maria"),Order(1,3)));
x.push_back(std::make_pair(Client(29,"Alex"),Order(10,5)));
и этот класс Order:
class Order{
private:
int amountPizza;
int pizzaAge;
public:
int getPizzaAge(){
return pizzaAge;
}
и сделал что-то вроде этого:
auto it=x.begin();
while(it!=x.end()){
if((it->second).getPizzaAge()>3){
x.erase(std::remove(x.begin(),x.end(),it->second),x.end());
}
it++;
}
и не работает.
Errors:
error: no match for 'operator==' (operand types are 'std::pair<Client, Order>' and 'const Order')
{ return *__it == _M_value; }
'std::pair<Client, Order>' is not derived from 'const __gnu_cxx::__normal_iterator<_IteratorL, _Container>'
{ return *__it == _M_value; }