]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.c
Allow string concatenation in the parser as well, for now only for immediate strings...
[xonotic/gmqcc.git] / ast.c
diff --git a/ast.c b/ast.c
index aa7050914fb5475219664cb51dd82cc5b6f58dae..3e5d304d1e53c6ba9666f56ddfd6aafdc4bc94c8 100755 (executable)
--- a/ast.c
+++ b/ast.c
@@ -316,6 +316,7 @@ ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
     self->isfield  = false;
     self->cvq      = CV_NONE;
     self->hasvalue = false;
+    self->isimm    = false;
     self->uses    = 0;
     memset(&self->constval, 0, sizeof(self->constval));