| 432 | /// @b Async-Handler-Safety: \asyncsafe. |
| 433 | template <class Allocator1, class Allocator2> |
| 434 | bool operator==(const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept { |
| 435 | return lhs.as_vector() == rhs.as_vector(); |
| 436 | } |
| 437 | |
| 438 | |
| 439 | /// Comparison operators that provide platform dependant ordering and have amortized O(1) complexity; O(size()) worst case complexity; are Async-Handler-Safe. |
nothing calls this directly
no outgoing calls
no test coverage detected