Closed kamkamkil closed 4 years ago
while creating implementation for inside class extonison is not working properly for operator == from class :
class RectangleMatrix::Iterator { public: //... bool operator==(const Iterator it); //...
should be :
bool RectangleMatrix::Iterator::operator==(const Iterator it) { //.... }
but instead create :
bool RectangleMatrix::operator==(const Iterator it) { //... }
while creating implementation for inside class extonison is not working properly for operator == from class :
should be :
but instead create :