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 ] >> ')' ;