1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00
This commit is contained in:
Brian Fiete 2024-10-29 14:35:12 -04:00
parent 74294567e7
commit d46cc8d015

View file

@ -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;
}