fix GCC warning by adding missing parentheses around comparison in operand of '|'

This commit is contained in:
artemp 2017-01-04 18:18:47 +01:00
parent d99c3f6cf2
commit e210dfaf8c

View file

@ -373,7 +373,7 @@ auto const geometry_tuple_def =
|
properties[assign_properties]
|
omit[json_string] > lit(':') > omit[json_value]) % lit(',')
(omit[json_string] > lit(':') > omit[json_value])) % lit(',')
;
auto const geometry_def = lit("{") > geometry_tuple[create_geometry] > lit("}");