1 #ifndef BOOST_METAPARSE_GETTING_STARTED_5_2_4_HPP 2 #define BOOST_METAPARSE_GETTING_STARTED_5_2_4_HPP 3 4 // Automatically generated header file 5 6 // Definitions before section 5.2.3 7 #include "5_2_3.hpp" 8 9 // Definitions of section 5.2.3 10 #include <boost/metaparse/foldl.hpp> 11 12 using exp_parser10 = 13 build_parser< 14 transform< 15 sequence< 16 int_token, 17 foldl< 18 sequence<plus_token, int_token>, 19 boost::mpl::int_<0>, 20 boost::mpl::quote2<sum_items> 21 > 22 >, 23 boost::mpl::quote1<sum_vector>> 24 >; 25 26 #endif 27 28