fix typo
This commit is contained in:
parent
7b9ba0db31
commit
9791766e32
1 changed files with 1 additions and 1 deletions
|
@ -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_) &&
|
||||
|
|
Loading…
Add table
Reference in a new issue