Fix stack spec on gcc

This commit is contained in:
Max Brunsfeld 2014-06-04 13:46:18 -07:00
parent deaa7e2755
commit 652fa2f8a5
3 changed files with 11 additions and 27 deletions

View file

@ -17,15 +17,14 @@ typedef struct {
} ts_lexer;
static inline ts_lexer ts_lexer_make() {
ts_lexer result = {
.chunk = NULL,
.chunk_start = 0,
.chunk_size = 0,
.position_in_chunk = 0,
.token_start_position = 0,
.token_end_position = 0,
.reached_end = 0,
};
ts_lexer result;
result.chunk = NULL;
result.chunk_start = 0;
result.chunk_size = 0;
result.position_in_chunk = 0;
result.token_start_position = 0;
result.token_end_position = 0;
result.reached_end = 0;
return result;
}