| 23 | { |
| 24 | public: |
| 25 | constexpr Point(double x, double y) noexcept |
| 26 | : mX(x) |
| 27 | , mY(y) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | constexpr double GetX() const noexcept { return mX; } |
| 32 | constexpr double GetY() const noexcept { return mY; } |
nothing calls this directly
no outgoing calls
no test coverage detected