Use boost::spirit::x3::standard::char_ parser
This commit is contained in:
parent
7f2c8b756a
commit
59e5f50e26
1 changed files with 2 additions and 2 deletions
|
@ -32,11 +32,11 @@
|
||||||
namespace mapnik { namespace grammar {
|
namespace mapnik { namespace grammar {
|
||||||
|
|
||||||
namespace x3 = boost::spirit::x3;
|
namespace x3 = boost::spirit::x3;
|
||||||
namespace ascii = boost::spirit::x3::ascii;
|
namespace standard = boost::spirit::x3::standard;
|
||||||
|
|
||||||
using x3::lit;
|
using x3::lit;
|
||||||
using x3::lexeme;
|
using x3::lexeme;
|
||||||
using ascii::char_;
|
using standard::char_;
|
||||||
|
|
||||||
struct unesc_char_ : x3::symbols<char>
|
struct unesc_char_ : x3::symbols<char>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue