Skip to content

Commit

Permalink
Merge pull request #920 from Mellich-2/fix-dynamic-dispatch-popfirst
Browse files Browse the repository at this point in the history
Fix runtime dispatch in Deque
  • Loading branch information
oxinabox authored Feb 10, 2025
2 parents 45f9985 + d81186f commit caa1bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DataStructures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ module DataStructures
include("deprecations.jl")

@static if VERSION <= v"1.3"
_unsetindex!(a, i) = a
const _unsetindex!(a, i) = a
else
_unsetindex! = Base._unsetindex!
const _unsetindex! = Base._unsetindex!
end
end

0 comments on commit caa1bd0

Please sign in to comment.