diff options
Diffstat (limited to 'py/misc.h')
| -rw-r--r-- | py/misc.h | 6 | 
1 files changed, 2 insertions, 4 deletions
| @@ -66,10 +66,8 @@ typedef struct _vstr_t {      int alloc;      int len;      char *buf; -    struct { -        bool had_error : 1; -        bool fixed_buf : 1; -    }; +    bool had_error : 1; +    bool fixed_buf : 1;  } vstr_t;  // convenience macro to declare a vstr with a fixed size buffer on the stack | 
