| 719 | } |
| 720 | |
| 721 | uint64_t StackTrace::HashCode() const { |
| 722 | return util_hash::CityHash64(reinterpret_cast<const char*>(frames_), |
| 723 | sizeof(frames_[0]) * num_frames_); |
| 724 | } |
| 725 | |
| 726 | bool StackTrace::LessThan(const StackTrace& s) const { |
| 727 | return std::lexicographical_compare(frames_, &frames_[num_frames_], |