From e210dfaf8c8bf4fea36f4933c1c0114e6e208504 Mon Sep 17 00:00:00 2001 From: artemp Date: Wed, 4 Jan 2017 18:18:47 +0100 Subject: [PATCH] fix GCC warning by adding missing parentheses around comparison in operand of '|' --- include/mapnik/json/topojson_grammar_x3_def.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/json/topojson_grammar_x3_def.hpp b/include/mapnik/json/topojson_grammar_x3_def.hpp index d891cc629..bddbed3eb 100644 --- a/include/mapnik/json/topojson_grammar_x3_def.hpp +++ b/include/mapnik/json/topojson_grammar_x3_def.hpp @@ -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("}");