| 458 | namespace bp = boost::parser; |
| 459 | |
| 460 | struct Content |
| 461 | { |
| 462 | ~Content() |
| 463 | { |
| 464 | int setbreakpointhere = 0; |
| 465 | (void)setbreakpointhere; |
| 466 | } |
| 467 | }; |
| 468 | constexpr bp::rule<struct content_tag, std::shared_ptr<Content>> content = |
| 469 | "content"; |
| 470 | constexpr auto content_action = [](auto & ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected