use uint8_t instead of ArgType in Arg struct

This commit is contained in:
lyon1998 2022-03-20 08:55:23 +08:00
parent c9985334cb
commit c9bd721f60

View File

@ -55,7 +55,7 @@ typedef struct __arg __arg;
struct __arg {
__arg* next;
uint16_t size;
ArgType type;
uint8_t type;
uint8_t __rsvd;
Hash name_hash;
uint8_t content[];