| 20 | float height = 200.0f; |
| 21 | |
| 22 | bool operator==(RectangularRadiationSource const& other) const { return width == other.width && height == other.height; } |
| 23 | bool operator!=(RectangularRadiationSource const& other) const { return !operator==(other); } |
| 24 | }; |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected