widl: Allow hexadecimal argument for version-attribute.
This commit is contained in:
parent
60beb40cb7
commit
0d4f6bf258
|
@ -1111,6 +1111,7 @@ uniondef: tUNION t_ident '{' ne_union_fields '}'
|
|||
version:
|
||||
aNUM { $$ = MAKEVERSION($1, 0); }
|
||||
| aNUM '.' aNUM { $$ = MAKEVERSION($1, $3); }
|
||||
| aHEXNUM { $$ = $1; }
|
||||
;
|
||||
|
||||
%%
|
||||
|
|
Loading…
Reference in New Issue