blob: 14b9402a5dea49da0f93caf8a1352f4c5de9d3a0 (
plain)
1
2
3
4
5
6
7
|
#include <boost/spirit/home/x3.hpp>
namespace x3 = boost::spirit::x3;
x3::rule<struct grammar_r, int> const grammar;
using grammar_type = decltype(grammar);
BOOST_SPIRIT_DECLARE(grammar_type)
|