mirror of https://github.com/python/cpython.git
Fixed duplicate use of OFF macro.
This commit is contained in:
parent
670ceb30d3
commit
d97f048ae8
|
@ -281,6 +281,8 @@ static struct memberlist generic_memberlist[] = {
|
|||
{NULL} /* Sentinel */
|
||||
};
|
||||
|
||||
#undef OFF
|
||||
|
||||
static object *
|
||||
generic_getattr(g, name)
|
||||
genericobject *g;
|
||||
|
@ -1734,6 +1736,8 @@ form_dealloc(f)
|
|||
DEL(f);
|
||||
}
|
||||
|
||||
#define OFF(x) offsetof(FL_FORM, x)
|
||||
|
||||
static struct memberlist form_memberlist[] = {
|
||||
{"window", T_LONG, OFF(window), RO},
|
||||
{"w", T_FLOAT, OFF(w)},
|
||||
|
@ -1747,6 +1751,8 @@ static struct memberlist form_memberlist[] = {
|
|||
{NULL} /* Sentinel */
|
||||
};
|
||||
|
||||
#undef OFF
|
||||
|
||||
static object *
|
||||
form_getattr(f, name)
|
||||
formobject *f;
|
||||
|
|
Loading…
Reference in New Issue