fix [-Wparentheses] warning
This commit is contained in:
parent
654c31d72d
commit
456ebe006b
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ feature_grammar<Iterator,FeatureType,ErrorHandler>::feature_grammar(mapnik::tran
|
|||
;
|
||||
|
||||
properties = lit("\"properties\"")
|
||||
> lit(':') > (lit('{') > -attributes(_r1) > lit('}')) | lit("null")
|
||||
> lit(':') > ((lit('{') > -attributes(_r1) > lit('}')) | lit("null"))
|
||||
;
|
||||
|
||||
attributes = (json_.string_ [_a = _1] > lit(':') > attribute_value [put_property_(_r1,_a,_1)]) % lit(',')
|
||||
|
|
Loading…
Reference in a new issue