diff --git a/src/dlangui/dom/cssparser.d b/src/dlangui/dom/cssparser.d index a64c75f0..2331f1b6 100644 --- a/src/dlangui/dom/cssparser.d +++ b/src/dlangui/dom/cssparser.d @@ -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 } }