[qfcc] Rename G_* macros to Q_*

They clash with those in progs.h, which is needed for using progs code
in the compiler.
This commit is contained in:
Bill Currie 2022-11-16 17:53:21 +09:00
parent 47163ef2c4
commit e1d7854af5
2 changed files with 3 additions and 3 deletions

View file

@ -110,8 +110,8 @@ extern pr_info_t pr;
#define D_POINTER(t,d) (&D_PACKED (t, d))
#define D_STRUCT(t,d) (*D_POINTER (t, d))
#define G_POINTER(s,t,o) ((t *)((s)->data + o))
#define G_STRUCT(s,t,o) (*G_POINTER (s, t, o))
#define Q_POINTER(s,t,o) ((t *)((s)->data + o))
#define Q_STRUCT(s,t,o) (*Q_POINTER (s, t, o))
#define POINTER_OFS(s,p) ((pr_type_t *) (p) - (s)->data)

View file

@ -1075,7 +1075,7 @@ finish_class (class_t *class)
space = class->def->space;
cls = &D_STRUCT (pr_class_t, class->def);
meta = &G_STRUCT (space, pr_class_t, cls->class_pointer);
meta = &Q_STRUCT (space, pr_class_t, cls->class_pointer);
EMIT_DEF (space, meta->methods, emit_methods (class->methods,
class->name, 0));