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

Function operator<

include/boost/stacktrace/stacktrace.hpp:424–426  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422/// @b Async-Handler-Safety: \asyncsafe.
423template <class Allocator1, class Allocator2>
424bool operator< (const basic_stacktrace<Allocator1>& lhs, const basic_stacktrace<Allocator2>& rhs) noexcept {
425 return lhs.size() < rhs.size() || (lhs.size() == rhs.size() && lhs.as_vector() < rhs.as_vector());
426}
427
428/// @brief Compares stacktraces for equality.
429///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected