Fix: ast_value.cvq must be an int, not a bool;

Fixes #62
This commit is contained in:
Wolfgang Bumiller 2012-12-22 12:30:03 +01:00
parent fa401b6f56
commit b4e38a8fed

2
ast.h
View file

@ -161,7 +161,7 @@ struct ast_value_s
ast_value *next;
*/
bool cvq; /* const/var qualifier */
int cvq; /* const/var qualifier */
bool isfield; /* this declares a field */
bool hasvalue;
union {