J
JustSomeGuy
typedef struct
{
unsigned char item_type;
unsigned char res;
unsigned short item_len;
} item_type;
if (item.item_type != 0x30)
Gives the error:
rq.h(46) : error C2274: 'function-style cast' : illegal as right side of '.'
operator
VC++ 6.0
{
unsigned char item_type;
unsigned char res;
unsigned short item_len;
} item_type;
if (item.item_type != 0x30)
Gives the error:
rq.h(46) : error C2274: 'function-style cast' : illegal as right side of '.'
operator
VC++ 6.0