Skip to content

Commit

Permalink
Fix some invalidations from extending ==(::Any, ::SomeType) (#36255)
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy authored Jun 13, 2020
1 parent 3e4a0e7 commit ab3c1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterserialize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ end
# d) is a bits type
function syms_2b_sent(s::ClusterSerializer, identifier)
lst = Symbol[]
check_syms = get(s.glbs_in_tnobj, identifier, [])
check_syms = get(s.glbs_in_tnobj, identifier, Symbol[])
for sym in check_syms
v = getfield(Main, sym)

Expand Down

0 comments on commit ab3c1d2

Please sign in to comment.