| 460 | /// Fast hashing support, O(st.size()) complexity; Async-Handler-Safe. |
| 461 | template <class Allocator> |
| 462 | std::size_t hash_value(const basic_stacktrace<Allocator>& st) noexcept { |
| 463 | return boost::hash_range(st.as_vector().begin(), st.as_vector().end()); |
| 464 | } |
| 465 | |
| 466 | /// Returns std::string with the stacktrace in a human readable format; unsafe to use in async handlers. |
| 467 | template <class Allocator> |
nothing calls this directly
no outgoing calls
no test coverage detected