mirror of https://github.com/buggins/dlangui.git
Fixed deprecation warning about union fields initialization
This commit is contained in:
parent
1822edb88d
commit
9c2c6a6fbb
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue