mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fix sort
This commit is contained in:
parent
74294567e7
commit
d46cc8d015
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ namespace System.Collections
|
|||
left++;
|
||||
if (left >= mCount)
|
||||
Runtime.FatalError("Illegal comparer method. Comparer(lhs, rhs) must equal -Comparer(rhs, lhs).");
|
||||
if (comparer(keys[++left], pivot) >= 0)
|
||||
if (comparer(keys[left], pivot) >= 0)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue