Skip to content

Commit

Permalink
fix field types of Method type
Browse files Browse the repository at this point in the history
Ref #22743
(cherry picked from commit 93531aa)
  • Loading branch information
JeffBezanson authored and ararslan committed Sep 15, 2017
1 parent 48e850e commit 524ec4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jltypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -2085,8 +2085,8 @@ void jl_init_types(void)
jl_svecset(jl_methtable_type->types, 7, jl_int32_type); // DWORD
#endif
jl_svecset(jl_methtable_type->types, 8, jl_int32_type); // uint32_t
jl_svecset(jl_method_type->types, 10, jl_method_instance_type);
jl_svecset(jl_method_type->types, 11, jl_method_instance_type);
jl_svecset(jl_method_type->types, 12, jl_method_instance_type);
jl_svecset(jl_method_instance_type->types, 12, jl_voidpointer_type);
jl_svecset(jl_method_instance_type->types, 13, jl_voidpointer_type);
jl_svecset(jl_method_instance_type->types, 14, jl_voidpointer_type);
Expand Down

0 comments on commit 524ec4a

Please sign in to comment.