| 444 | |
| 445 | template <class Allocator1, class Allocator2> |
| 446 | bool operator<=(const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept { |
| 447 | return !(lhs > rhs); |
| 448 | } |
| 449 | |
| 450 | template <class Allocator1, class Allocator2> |
| 451 | bool operator>=(const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected