mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Merge remote-tracking branch 'origin/GT-3213_caheckman_PR-839_GregoryMorse_RangeHintComparator' into Ghidra_9.1
This commit is contained in:
commit
632778c0eb
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ bool RangeHint::compareRanges(const RangeHint *a,const RangeHint *b)
|
|||
type_metatype bmeta = b->type->getMetatype();
|
||||
if (ameta != bmeta)
|
||||
return (ameta < bmeta); // Order more specific types first
|
||||
return true;
|
||||
return false; //comp(x, x) must be false for strict weak ordering
|
||||
}
|
||||
|
||||
/// \param spc is the (stack) address space associated with this function's local variables
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue