mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
remove a mostly unused field
This commit is contained in:
parent
14e8bfe94b
commit
f1c9a8d24b
2 changed files with 0 additions and 2 deletions
|
@ -42,7 +42,6 @@ typedef struct function_s {
|
|||
int function_num;
|
||||
string_t s_file; // source file with definition
|
||||
string_t s_name;
|
||||
int file_line;
|
||||
struct def_s *def;
|
||||
struct scope_s *scope;
|
||||
struct reloc_s *refs;
|
||||
|
|
|
@ -573,7 +573,6 @@ qfo_to_progs (qfo_t *qfo, pr_info_t *pr)
|
|||
pf->function_num = i + 1;
|
||||
pf->s_file = qf->file;
|
||||
pf->s_name = qf->name;
|
||||
pf->file_line = qf->line;
|
||||
pf->def = pr->scope->head + qf->def;
|
||||
pf->scope = new_scope (sc_params, init_space (qf->locals_size, 0),
|
||||
pr->scope);
|
||||
|
|
Loading…
Reference in a new issue