widl: Remove unused 'rname' field of type_t.
This commit is contained in:
parent
55df46ab85
commit
e9ec85a01a
|
@ -1016,7 +1016,6 @@ static type_t *make_type(unsigned char type, type_t *ref)
|
||||||
t->name = NULL;
|
t->name = NULL;
|
||||||
t->type = type;
|
t->type = type;
|
||||||
t->ref = ref;
|
t->ref = ref;
|
||||||
t->rname = NULL;
|
|
||||||
t->attrs = NULL;
|
t->attrs = NULL;
|
||||||
t->funcs = NULL;
|
t->funcs = NULL;
|
||||||
t->fields = NULL;
|
t->fields = NULL;
|
||||||
|
|
|
@ -183,7 +183,6 @@ struct _type_t {
|
||||||
char *name;
|
char *name;
|
||||||
unsigned char type;
|
unsigned char type;
|
||||||
struct _type_t *ref;
|
struct _type_t *ref;
|
||||||
char *rname;
|
|
||||||
attr_t *attrs;
|
attr_t *attrs;
|
||||||
func_t *funcs;
|
func_t *funcs;
|
||||||
var_t *fields;
|
var_t *fields;
|
||||||
|
|
|
@ -947,7 +947,7 @@ static int encode_type(
|
||||||
|
|
||||||
static void dump_type(type_t *t)
|
static void dump_type(type_t *t)
|
||||||
{
|
{
|
||||||
chat("dump_type: %p name %s type %d ref %p rname %s attrs %p\n", t, t->name, t->type, t->ref, t->rname, t->attrs);
|
chat("dump_type: %p name %s type %d ref %p attrs %p\n", t, t->name, t->type, t->ref, t->attrs);
|
||||||
if(t->ref) dump_type(t->ref);
|
if(t->ref) dump_type(t->ref);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue