temporarily disable offset fields

This commit is contained in:
Yuichi Nishiwaki 2016-02-06 21:18:38 +09:00
parent 497595a0f7
commit 12f999d608
1 changed files with 0 additions and 7 deletions
extlib/benz/include/picrin

View File

@ -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;