From 8da6cc72f83aabec66aa9bd92a5ecdcbf6b2c06a Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 26 Nov 2007 01:41:22 +0000 Subject: [PATCH] workaround for not allowed construction: [] not on toplevel ... for now, use [1] and replace the whole thing by a list someday [r18535] --- ast_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast_t.h b/ast_t.h index 7dd8480..50d0b6d 100644 --- a/ast_t.h +++ b/ast_t.h @@ -228,7 +228,7 @@ struct initializer_t { /* if type == INITIALIZER_LIST */ struct { size_t len; - initializer_t *initializers[]; + initializer_t *initializers[1]; } list; /* if type == INITIALIZER_STRING */ const char *string; -- 2.20.1