MCPcopy Create free account
hub / github.com/boostorg/stacktrace / operator>=

Function operator>=

include/boost/stacktrace/frame.hpp:43–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41constexpr inline bool operator> (const frame& lhs, const frame& rhs) noexcept { return rhs < lhs; }
42constexpr inline bool operator<=(const frame& lhs, const frame& rhs) noexcept { return !(lhs > rhs); }
43constexpr inline bool operator>=(const frame& lhs, const frame& rhs) noexcept { return !(lhs < rhs); }
44constexpr inline bool operator==(const frame& lhs, const frame& rhs) noexcept { return lhs.address() == rhs.address(); }
45constexpr inline bool operator!=(const frame& lhs, const frame& rhs) noexcept { return !(lhs == rhs); }
46

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected