Skip to content

Commit 7ac1056

Browse files
authored
Ignore passed in scratch space
I'm not aware of any users that actually pass ts here, so there is not much reason for base to support receiving scratch space in this way.
1 parent 1bc5ba9 commit 7ac1056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SortingAlgorithms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ end
525525
## Radix sort
526526
@static if VERSION >= v"1.9.0-DEV.482" # Base introduced radixsort in 1.9
527527
function sort!(vs::AbstractVector{T}, lo::Int, hi::Int, ::RadixSortAlg, o::Ordering, ts::Union{Nothing, AbstractVector{T}}=nothing) where T
528-
sort!(vs, lo, hi, Base.DEFAULT_STABLE, o, ts)
528+
sort!(vs, lo, hi, Base.DEFAULT_STABLE, o)
529529
end
530530
else
531531

0 commit comments

Comments
 (0)