We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef75f4 commit 5f58ca4Copy full SHA for 5f58ca4
lldb/source/Plugins/Process/minidump/MinidumpParser.h
@@ -51,6 +51,8 @@ struct Range {
51
}
52
53
friend bool operator<(const Range &lhs, const Range &rhs) {
54
+ if (lhs.start == rhs.start)
55
+ return lhs.range_ref.size() < rhs.range_ref.size();
56
return lhs.start < rhs.start;
57
58
};
0 commit comments