#include namespace qi = boost::spirit::qi; int main() { auto f = [](qi::unused_type, auto &ctx) { return true; }; qi::rule r{ qi::eps(f) }; }