Fixed deprecation warning about union fields initialization

This commit is contained in:
Daniele Bondì 2020-02-29 22:25:16 +01:00
parent 1822edb88d
commit 9c2c6a6fbb
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,6 @@ struct CSSToken {
string text;
string dimensionUnit;
union {
bool typeFlagId; // true if identifier is valid ID
struct {
long intValue = 0; // for number and dimension
double doubleValue = 0; // for number and dimension
@ -91,6 +90,7 @@ struct CSSToken {
uint unicodeRangeStart; // for unicodeRange (initialized to 0 via intValue=0)
uint unicodeRangeEnd; // for unicodeRange (initialized to 0 via intValue=0)
}
bool typeFlagId; // true if identifier is valid ID
}
}