widl: Make all pointer fields of expr_t structure constant.

This commit is contained in:
Robert Shearman 2006-02-07 12:28:20 +01:00 committed by Alexandre Julliard
parent 538ed06c41
commit 0d22347f44
1 changed files with 5 additions and 5 deletions

View File

@ -165,14 +165,14 @@ struct _attr_t {
struct _expr_t {
enum expr_type type;
expr_t *ref;
const expr_t *ref;
union {
long lval;
char *sval;
expr_t *ext;
typeref_t *tref;
const char *sval;
const expr_t *ext;
const typeref_t *tref;
} u;
expr_t *ext2;
const expr_t *ext2;
int is_const;
long cval;
/* parser-internal */