Tagged Questions
5
votes
4answers
13k views
What does “operator = must be a non-static member” mean? (C++)
I'm in the process of creating a double-linked list, and have overloaded the operator= to make on list equal another:
template<class T>
void operator=(const list<T>& lst)
{
...