| 1 | class Point { |
| 2 | public: |
| 3 | constexpr Point(double x, double y) noexcept : mX(x), mY(y) {} |
| 4 | |
| 5 | constexpr double GetX() const noexcept { return mX; } |
| 6 | constexpr double GetY() const noexcept { return mY; } |
nothing calls this directly
no outgoing calls
no test coverage detected