transform grammar - fix optional separator logic
This commit is contained in:
parent
fc037cb62b
commit
59f818fe2d
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ namespace mapnik { namespace grammar {
|
|||
// start
|
||||
auto const transform_def = transform_list_rule;
|
||||
|
||||
auto const transform_list_rule_def = transform_node_rule % no_skip[char_(", ")];
|
||||
auto const transform_list_rule_def = transform_node_rule % no_skip[*char_(", ")];
|
||||
|
||||
auto const transform_node_rule_def = matrix | translate | scale | rotate | skewX | skewY ;
|
||||
|
||||
|
|
Loading…
Reference in a new issue