Use boost::spirit::x3::standard::char_ parser

This commit is contained in:
Artem Pavlenko 2019-12-13 17:04:54 +00:00
parent 7f2c8b756a
commit 59e5f50e26

View file

@ -32,11 +32,11 @@
namespace mapnik { namespace grammar {
namespace x3 = boost::spirit::x3;
namespace ascii = boost::spirit::x3::ascii;
namespace standard = boost::spirit::x3::standard;
using x3::lit;
using x3::lexeme;
using ascii::char_;
using standard::char_;
struct unesc_char_ : x3::symbols<char>
{