fix some compiler warnings
This commit is contained in:
parent
0effea29bd
commit
30883e6487
7 changed files with 43 additions and 39 deletions
|
|
@ -29,7 +29,7 @@ class Box {
|
|||
|
||||
bool operator==(const Box<T>& b) const {
|
||||
return getLowerLeft() == b.getLowerLeft() &&
|
||||
getUpperRight == b.getUpperRight();
|
||||
getUpperRight() == b.getUpperRight();
|
||||
}
|
||||
|
||||
bool operator!=(const Box<T>& p) const { return !(*this == p); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue