DED: Added special "no flags" value (0) for Flags
The correct syntax to specify that a Flags field has no value is:
Flags = ""; # Old formatFlags = 0; # New format (added in this commit)
A value token must be included as with any other field, so the followingis illegal:
Flags = ;
View differences
DED: Added special "no flags" value (0) for Flags
The correct syntax to specify that a Flags field has no value is:
Flags = ""; # Old format
Flags = 0; # New format (added in this commit)
A value token must be included as with any other field, so the following
is illegal:
Flags = ;