Also allow the possibility for negative values being passed to image option values
This commit is contained in:
parent
4fce3a7451
commit
cf3ff82f1a
1 changed files with 2 additions and 2 deletions
|
@ -42,9 +42,9 @@ struct image_options_grammar
|
|||
;
|
||||
pair = key >> -('=' >> value)
|
||||
;
|
||||
key = char_("a-zA-Z_") >> *char_("a-zA-Z_0-9\\.")
|
||||
key = char_("a-zA-Z_") >> *char_("a-zA-Z_0-9\\.\\-")
|
||||
;
|
||||
value = +char_("a-zA-Z_0-9\\.")
|
||||
value = +char_("a-zA-Z_0-9\\.\\-")
|
||||
;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue