| 524 | }; |
| 525 | constexpr auto foo_parser_def = bp::eps[foo_parser_action]; |
| 526 | struct Bar |
| 527 | { |
| 528 | std::shared_ptr<Foo> foo; |
| 529 | }; |
| 530 | constexpr bp::rule<struct bar_parser_tag, std::shared_ptr<Bar>> bar_parser = |
| 531 | "bar_parser"; |
| 532 | constexpr auto bar_parser_action = [](auto & ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected