Skip to content

Commit

Permalink
Fix problems with Julia 1.6 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Koustav Chowdhury authored and Koustav Chowdhury committed Jan 6, 2024
1 parent 2f04d7b commit d6b298e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/robin_dict.jl
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ function Base.empty!(h::RobinDict{K,V}) where {K, V}
h.idxfloor = 0
return h
end
Base.@assume_effects :terminates_locally Base.@propagate_inbounds function rh_search(h::RobinDict{K, V}, key) where {K, V}

Base.@propagate_inbounds function rh_search(h::RobinDict{K, V}, key) where {K, V}
sz = length(h.keys)
chash = hash_key(key)
cmeta = make_meta(chash, 0)
Expand Down

0 comments on commit d6b298e

Please sign in to comment.