| 172 | } |
| 173 | |
| 174 | void github_issue_78() |
| 175 | { |
| 176 | namespace bp = boost::parser; |
| 177 | std::vector<int> result; |
| 178 | auto b = bp::parse("3 4 c", +bp::int_, bp::ws, result); |
| 179 | BOOST_TEST(!b); |
| 180 | BOOST_TEST(result.empty()); |
| 181 | } |
| 182 | |
| 183 | namespace issue_90 { namespace parser { |
| 184 | const auto string = |