fix build error

This commit is contained in:
Vadim Lopatin 2017-06-13 11:17:54 +03:00
parent 61eb06cffc
commit 4f30af7e76
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ struct CSSToken {
bool typeFlagInteger; // for number and dimension - true if number is integer, false if double bool typeFlagInteger; // for number and dimension - true if number is integer, false if double
} }
struct { struct {
uint unicodeRangeStart = 0; // for unicodeRange uint unicodeRangeStart; // for unicodeRange (initialized to 0 via intValue=0)
uint unicodeRangeEnd = 0; // for unicodeRange uint unicodeRangeEnd; // for unicodeRange (initialized to 0 via intValue=0)
} }
} }
} }