I am trying to build a parser that accept string of the form "/integer/(/integer/)" and produces a std::tuple Right now i have :
qi::rule<string::iterator,std::tuple<int,int>()> parser =
(qi::int_ >> '(' >> qi::int_ >> ')')[_val = std::make_tuple(qi::_1,qi::_2)]
which doesnt compile because the placeholders qi::_i aren't of the correct types.How to "extract" the underlying value from a placeholder ?