From e4a60d7c90d1f9ccaf713a6dbc61f62af34cb57c Mon Sep 17 00:00:00 2001 From: artemp Date: Thu, 10 Dec 2015 16:05:45 +0000 Subject: [PATCH] disable skipper for "hex" colours --- include/mapnik/svg2_color_grammar_def.hpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/include/mapnik/svg2_color_grammar_def.hpp b/include/mapnik/svg2_color_grammar_def.hpp index 3b0e2c081..6b08dc0f2 100644 --- a/include/mapnik/svg2_color_grammar_def.hpp +++ b/include/mapnik/svg2_color_grammar_def.hpp @@ -29,6 +29,7 @@ #include //#include #include +#include BOOST_FUSION_ADAPT_STRUCT ( mapnik::color, @@ -60,7 +61,7 @@ using x3::omit; using x3::attr; using x3::double_; using x3::no_case; - +using x3::no_skip; struct named_colors_ : x3::symbols { @@ -222,11 +223,11 @@ x3::uint_parser hex2; x3::uint_parser hex1; x3::uint_parser dec3; -x3::rule const svg2_color("svg2_color"); -x3::rule const hex2_color("hex2_color"); -x3::rule const hex1_color("hex1_color"); -x3::rule const rgb_color("rgb_color"); -x3::rule const rgba_color("rgba_color"); +x3::rule const svg2_color("svg2_color"); +x3::rule const hex2_color("hex2_color"); +x3::rule const hex1_color("hex1_color"); +x3::rule const rgb_color("rgb_color"); +x3::rule const rgba_color("rgba_color"); struct clip_opacity { @@ -278,8 +279,8 @@ auto hex1_opacity = [](auto& ctx) _val(ctx).alpha_ = _attr(ctx) | _attr(ctx) << 4; }; -auto const hex2_color_def = lit('#') >> hex2 >> hex2 >> hex2 >> (hex2 | attr(255)) ; -auto const hex1_color_def = lit('#') >> hex1[hex1_red] >> hex1[hex1_green] >> hex1[hex1_blue] >> (hex1[hex1_opacity] | attr(15)[hex1_opacity]); +auto const hex2_color_def = no_skip[lit('#') >> hex2 >> hex2 >> hex2 >> (hex2 | attr(255))] ; +auto const hex1_color_def = no_skip[lit('#') >> hex1[hex1_red] >> hex1[hex1_green] >> hex1[hex1_blue] >> (hex1[hex1_opacity] | attr(15)[hex1_opacity])]; auto const rgb_color_def = lit("rgb") >> lit('(') >> dec3 >> lit(',') >> dec3 >> lit(',') >> dec3 >> attr(255) >> lit(')'); auto const rgba_color_def = lit("rgba")