vendredi 4 juin 2021

invalid operands to binary expression when push element in a priority queue

I'm new in c++ programming. I've to create a priority queue of a Class named Container. So I've written this way:

In main.cpp:

struct Comp{
    bool operator() (const Container& a, const Container& b){
        return a<b;
    }
};

std::priority_queue<Container, std::list<Container>, Comp> containers;

In Container.cpp:

class Container{
public:
    friend bool operator< (const Container& a, const Container& b);
    //...
};

bool operator<(const Container &a, const Container &b) {
    return a.y<b.y;
}

I don't know why, even if I've declared a < operator overload, it gives me the same error:

error: invalid operands to binary expression ('std::__1::__list_iterator<Container, void *>' and 'std::__1::__list_iterator<Container, void *>')
    __sift_up<_Comp_ref>(__first, __last, __comp, __last - __first); 

How can I resolve this ? I don't really know what's going on :(

Aucun commentaire:

Enregistrer un commentaire