[Lldb-commits] [lldb] [lldb][Minidump Parser] Implement a range data vector for minidump memory ranges (PR #136040)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 17 14:20:36 PDT 2025
================
@@ -45,9 +49,16 @@ struct Range {
friend bool operator==(const Range &lhs, const Range &rhs) {
return lhs.start == rhs.start && lhs.range_ref == rhs.range_ref;
}
+
+ friend bool operator<(const Range &lhs, const Range &rhs) {
+ return lhs.start < rhs.start;
----------------
Jlalond wrote:
@clayborg is this possible?
A minidump with two ranges at the same address should be impossible correct?
https://github.com/llvm/llvm-project/pull/136040
More information about the lldb-commits
mailing list