mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
build the method_list struct with the correct type
This commit is contained in:
parent
7cdbef2b11
commit
04d76ce1cf
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ init_types (void)
|
|||
chain_type (&type_SEL);
|
||||
|
||||
type_method = new_struct (0);
|
||||
new_struct_field (type_method, &type_SEL, "method_name", vis_public);
|
||||
new_struct_field (type_method, type_SEL.aux_type, "method_name", vis_public);
|
||||
new_struct_field (type_method, &type_string, "method_types", vis_public);
|
||||
new_struct_field (type_method, &type_IMP, "method_imp", vis_public);
|
||||
chain_type (type_method);
|
||||
|
|
Loading…
Reference in a new issue