Skip to content

Commit 21ca075

Browse files
authored
Fix CodeCache() constructor. (#533)
1 parent e5cd575 commit 21ca075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jlgen.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ end
140140
struct CodeCache
141141
dict::IdDict{MethodInstance,Vector{CodeInstance}}
142142

143-
CodeCache() = new(Dict{MethodInstance,Vector{CodeInstance}}())
143+
CodeCache() = new(IdDict{MethodInstance,Vector{CodeInstance}}())
144144
end
145145

146146
function Base.show(io::IO, ::MIME"text/plain", cc::CodeCache)

0 commit comments

Comments
 (0)