================
@@ -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;
+ }
----------------
clayborg wrote:
You don't need this class anymore. Just store a `llvm::ArrayRef<uint8_t>` in
the `MemoryRangeVector` definition instead of a `minidump::Range`
https://github.com/llvm/llvm-project/pull/136040
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits