| 9 | class Point { |
| 10 | public: |
| 11 | constexpr Point(double x, double y) noexcept |
| 12 | : mX{x} |
| 13 | , mY{y} |
| 14 | {} |
| 15 | |
| 16 | constexpr double GetX() const noexcept { return mX; } |
| 17 | constexpr double GetY() const noexcept { return mY; } |
nothing calls this directly
no outgoing calls
no test coverage detected