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