From d7cdf8077b9d6c7c6ca76e54b7f6948b7a521866 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 6 Feb 2011 15:41:15 +0900 Subject: [PATCH] Rename id_ivars to object_ivars. --- tools/qfcc/source/class.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/class.c b/tools/qfcc/source/class.c index 66b8a6833..7df5baa1d 100644 --- a/tools/qfcc/source/class.c +++ b/tools/qfcc/source/class.c @@ -168,7 +168,7 @@ static struct_def_t protocol_ivars[] = { {0, 0} }; -static struct_def_t id_ivars[] = { +static struct_def_t object_ivars[] = { {"class_pointer", &type_Class}, {0, 0} }; @@ -265,7 +265,7 @@ init_classes (void) type_object.t.class = &class_object; chain_type (&type_object); - sym = make_structure (0, 's', id_ivars, 0); + sym = make_structure (0, 's', object_ivars, 0); class_object.ivars = sym->type->t.symtab; class_object.type = &type_id; chain_type (&type_id);