X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Ftools%2Fvppapigen%2Fnode.h;h=58570d8d0968070fe8b1286390ea3cf1a59ddffb;hb=0d056e5ede136cd0111dc3f9f41ef7b36a938027;hp=65bd5d10060a47a83b38d427223c6bd3c9206fb7;hpb=87da476db0cd804e11463cc453a2bb41c6808542;p=vpp.git diff --git a/src/tools/vppapigen/node.h b/src/tools/vppapigen/node.h index 65bd5d10060..58570d8d096 100644 --- a/src/tools/vppapigen/node.h +++ b/src/tools/vppapigen/node.h @@ -44,6 +44,7 @@ enum node_subclass { /* WARNING: indices must match the vft... */ NODE_VECTOR, NODE_COMPLEX, NODE_NOVERSION, + NODE_VERSION, NODE_UWORD, NODE_N_TYPES, /* number of node types with VFT's */ @@ -77,10 +78,15 @@ typedef struct node_ { /* To shut up gcc-4.2.x warnings */ #define CDATA0 ((char *)(this->data[0])) -#define IDATA1 ((int)(uword)(this->data[1])) +#define CDATA1 ((char *)(this->data[0])) #define CDATA2 ((char *)(this->data[2])) #define CDATA3 ((char *)(this->data[3])) +#define IDATA0 ((int)(uword)(this->data[0])) +#define IDATA1 ((int)(uword)(this->data[1])) +#define IDATA2 ((int)(uword)(this->data[2])) +#define IDATA3 ((int)(uword)(this->data[3])) + #define NODE_FLAG_MANUAL_PRINT (1<<0) #define NODE_FLAG_MANUAL_ENDIAN (1<<1) #define NODE_FLAG_TYPEONLY (1<<3)