| 6954 | typename Context, |
| 6955 | typename SkipParser> |
| 6956 | auto call( |
| 6957 | Iter & first, |
| 6958 | Sentinel last, |
| 6959 | Context const & context, |
| 6960 | SkipParser const &, |
| 6961 | detail::flags flags, |
| 6962 | bool &) const |
| 6963 | { |
| 6964 | #if BOOST_PARSER_DO_TRACE |
| 6965 | [[maybe_unused]] auto _ = detail::scoped_trace( |
| 6966 | *this, first, last, context, flags, detail::global_nope); |
| 6967 | #endif |
| 6968 | return detail::resolve(context, attr_); |
| 6969 | } |
| 6970 | |
| 6971 | template< |
| 6972 | typename Iter, |
nothing calls this directly
no test coverage detected