When I try to define my operator= overload function as a friend function, I get an error message stating such and such needs to be a "nonstatic member function".
When I make it a member function instead, it compiles without complaint.
So can I make my operator= function a friend function, or must it only be a non-friend member function? Thank you.