| 78 | float height = 200.0f; |
| 79 | |
| 80 | bool operator==(RectangularSpot const& other) const { return width == other.width && height == other.height; } |
| 81 | bool operator!=(RectangularSpot const& other) const { return !operator==(other); } |
| 82 | }; |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected