Remove _Static_assert verifying the size of CString because it breaks C99 builds with gcc-5
This commit is contained in:
parent
78c3ea30a6
commit
9957c686a4
1 changed files with 0 additions and 1 deletions
1
tcc.h
1
tcc.h
|
@ -500,7 +500,6 @@ typedef struct CString {
|
|||
int size_allocated;
|
||||
void *data; /* either 'char *' or 'nwchar_t *' */
|
||||
} CString;
|
||||
_Static_assert(sizeof(CString) == 16, "CString should only require 16 bytes");
|
||||
|
||||
/* type definition */
|
||||
typedef struct CType {
|
||||
|
|
Loading…
Reference in a new issue