| 6 | constexpr double GetY() const noexcept { return mY; } |
| 7 | |
| 8 | constexpr void SetX(double x) noexcept { mX = x; } |
| 9 | constexpr void SetY(double y) noexcept { mY = y; } |
| 10 | private: |
| 11 | double mX, mY; |
nothing calls this directly
no outgoing calls
no test coverage detected