mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 13:22:07 +00:00
Switch to std.sort.pdq from std.sort.block (#7574)
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
@@ -284,7 +284,7 @@ pub const CommandLineReporter = struct {
|
||||
return;
|
||||
}
|
||||
|
||||
std.sort.block(bun.sourcemap.ByteRangeMapping, byte_ranges.items, void{}, bun.sourcemap.ByteRangeMapping.isLessThan);
|
||||
std.sort.pdq(bun.sourcemap.ByteRangeMapping, byte_ranges.items, void{}, bun.sourcemap.ByteRangeMapping.isLessThan);
|
||||
|
||||
iter = map.valueIterator();
|
||||
var writer = Output.errorWriter();
|
||||
|
||||
Reference in New Issue
Block a user