Skip to content

Commit

Permalink
Merge 7f80e8f into d0e0e23
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Jun 27, 2018
2 parents d0e0e23 + 7f80e8f commit 8e5731d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/sort.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using .Base: copymutable, LinearIndices, IndexStyle, viewindexing, IndexLinear,
AbstractVector, @inbounds, AbstractRange, @eval, @inline, Vector, @noinline,
AbstractMatrix, AbstractUnitRange, isless, identity, eltype, >, <, <=, >=, |, +, -, *, !,
extrema, sub_with_overflow, add_with_overflow, oneunit, div, getindex, setindex!,
length, resize!, fill
length, resize!, fill, Missing

using .Base: >>>, !==

Expand Down Expand Up @@ -568,7 +568,7 @@ end
## generic sorting methods ##

defalg(v::AbstractArray) = DEFAULT_STABLE
defalg(v::AbstractArray{<:Number}) = DEFAULT_UNSTABLE
defalg(v::AbstractArray{<:Union{Number, Missing}}) = DEFAULT_UNSTABLE

function sort!(v::AbstractVector, alg::Algorithm, order::Ordering)
inds = axes(v,1)
Expand Down

0 comments on commit 8e5731d

Please sign in to comment.