]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
don't just store a 'bool constant' in the ast/ir, store the complete qualifier: ...
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index f1ca3c8d7d6c33c48e9de6ce2a11ad10c83a4f5b..9d419609157039ce944b2fffcc28901422bd160c 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -159,7 +159,7 @@ struct ast_value_s
     ast_value  *next;
     */
 
-    bool constant;
+    bool cvq; /* const/var qualifier */
     bool hasvalue;
     union {
         double        vfloat;