Skip to content

Commit

Permalink
fix missing package specification
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Jul 15, 2023
1 parent 93843ce commit 79e7741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/abstractdataframe/sort.jl
Original file line number Diff line number Diff line change
Expand Up @@ -731,11 +731,11 @@ end
is_complex(o::DirectOrdering) = false

if isdefined(SortingAlgorithms.DataStructures, :FasterForward)
is_complex(o::FasterForward) = false
is_complex(o::SortingAlgorithms.DataStructures.FasterForward) = false
end

if isdefined(SortingAlgorithms.DataStructures, :FasterReverse)
is_complex(o::FasterReverse) = false
is_complex(o::SortingAlgorithms.DataStructures.FasterReverse) = false
end

is_complex(o::By) = o.by !== identity
Expand Down

0 comments on commit 79e7741

Please sign in to comment.