From 49cb8c736819bc5fc6441b897ced1cc2a958a161 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Wed, 19 Oct 2011 15:19:55 +0100 Subject: [PATCH] qualify attribute -> mapnik::attribute (vc10) --- include/mapnik/expression_grammar.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/mapnik/expression_grammar.hpp b/include/mapnik/expression_grammar.hpp index bfb8a22d6..8f6a4f1e2 100644 --- a/include/mapnik/expression_grammar.hpp +++ b/include/mapnik/expression_grammar.hpp @@ -50,6 +50,7 @@ namespace mapnik { +using namespace boost; namespace qi = boost::spirit::qi; namespace standard_wide = boost::spirit::standard_wide; using standard_wide::space_type; @@ -217,7 +218,7 @@ struct expression_grammar : qi::grammar | lit("false") [_val = false] | lit("null") [_val = value_null() ] | ustring [_val = unicode_(_1) ] - | attr [_val = construct( _1 ) ] + | attr [_val = construct( _1 ) ] | '(' >> expr [_val = _1 ] >> ')' ;