try to fix build error union initialization

This commit is contained in:
Vadim Lopatin 2017-06-13 11:09:28 +03:00
parent 93ce31ddc3
commit 61eb06cffc
1 changed files with 1 additions and 1 deletions

View File

@ -83,9 +83,9 @@ struct CSSToken {
union { union {
bool typeFlagId; // true if identifier is valid ID bool typeFlagId; // true if identifier is valid ID
struct { struct {
bool typeFlagInteger; // for number and dimension - true if number is integer, false if double
long intValue = 0; // for number and dimension long intValue = 0; // for number and dimension
double doubleValue = 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 { struct {
uint unicodeRangeStart = 0; // for unicodeRange uint unicodeRangeStart = 0; // for unicodeRange