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

Function operator>

include/boost/stacktrace/stacktrace.hpp:441–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439/// Comparison operators that provide platform dependant ordering and have amortized O(1) complexity; O(size()) worst case complexity; are Async-Handler-Safe.
440template <class Allocator1, class Allocator2>
441bool operator> (const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept {
442 return rhs < lhs;
443}
444
445template <class Allocator1, class Allocator2>
446bool operator<=(const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected