MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / Point

Method Point

tests/constexprPoint.cpp:3–3  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected