]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.c
Support text type escape sequences \b and \s.
[xonotic/gmqcc.git] / ast.c
diff --git a/ast.c b/ast.c
index 8b3f110f3fd18e2ff1a14222ca6bbbe749fef8fa..24d0479a71f0b6ae956cce8aa3e264ebdff5cc1c 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -360,6 +360,7 @@ ast_value* ast_value_new(lex_ctx_t ctx, const char *name, int t)
     self->cvq      = CV_NONE;
     self->hasvalue = false;
     self->isimm    = false;
+    self->inexact  = false;
     self->uses     = 0;
     memset(&self->constval, 0, sizeof(self->constval));
     self->initlist = NULL;