temporarily disable offset fields
This commit is contained in:
parent
497595a0f7
commit
12f999d608
extlib/benz/include/picrin
|
@ -25,18 +25,11 @@ struct pic_irep {
|
||||||
int argc, localc, capturec;
|
int argc, localc, capturec;
|
||||||
bool varg;
|
bool varg;
|
||||||
union {
|
union {
|
||||||
struct {
|
|
||||||
int code_offset;
|
|
||||||
int ints_offset;
|
|
||||||
int nums_offset;
|
|
||||||
int irep_offset;
|
|
||||||
} p;
|
|
||||||
struct {
|
struct {
|
||||||
pic_code *code;
|
pic_code *code;
|
||||||
int *ints;
|
int *ints;
|
||||||
double *nums;
|
double *nums;
|
||||||
union irep_node {
|
union irep_node {
|
||||||
int offset;
|
|
||||||
struct pic_irep *i;
|
struct pic_irep *i;
|
||||||
} *irep;
|
} *irep;
|
||||||
} s;
|
} s;
|
||||||
|
|
Loading…
Reference in New Issue