This commit is contained in:
artemp 2014-05-27 12:36:05 +01:00
parent 7b9ba0db31
commit 9791766e32

View file

@ -133,7 +133,7 @@ void swap (Map & lhs, Map & rhs)
bool Map::operator==(Map const& rhs) const
{
return (width_ = rhs.width_) &&
return (width_ == rhs.width_) &&
(height_ == rhs.height_) &&
(srs_ == rhs.srs_) &&
(buffer_size_ == rhs.buffer_size_) &&