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