Skip to content

Commit 1365b38

Browse files
committed
Merge branch 'ordered_robindict' of https://github.com/eulerkochy/DataStructures.jl into ordered_robindict
2 parents b9aa7ca + 6680c29 commit 1365b38

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/ordered_robin_dict.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ get!(f::Function, collection, key)
238238
function get!(default::Base.Callable, h::OrderedRobinDict{K,V}, key0) where {K,V}
239239
index = get(h.dict, key, -2)
240240
index > 0 && return @inbounds h.vals[index]
241-
242241
v = convert(V, default())
243242
setindex!(h, v, key)
244243
return v

0 commit comments

Comments
 (0)