mirror of https://github.com/buggins/dlangui.git
try to fix build error union initialization
This commit is contained in:
parent
93ce31ddc3
commit
61eb06cffc
|
@ -83,9 +83,9 @@ struct CSSToken {
|
|||
union {
|
||||
bool typeFlagId; // true if identifier is valid ID
|
||||
struct {
|
||||
bool typeFlagInteger; // for number and dimension - true if number is integer, false if double
|
||||
long intValue = 0; // for number and dimension
|
||||
double doubleValue = 0; // for number and dimension
|
||||
bool typeFlagInteger; // for number and dimension - true if number is integer, false if double
|
||||
}
|
||||
struct {
|
||||
uint unicodeRangeStart = 0; // for unicodeRange
|
||||
|
|
Loading…
Reference in New Issue