| 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 | |
| 84 | union SpotShapeData |
nothing calls this directly
no outgoing calls
no test coverage detected