fix GCC warning by adding missing parentheses around comparison in operand of '|'
This commit is contained in:
parent
d99c3f6cf2
commit
e210dfaf8c
1 changed files with 1 additions and 1 deletions
|
@ -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("}");
|
||||
|
|
Loading…
Reference in a new issue