| 8039 | typename Context, |
| 8040 | typename SkipParser> |
| 8041 | detail::nope call( |
| 8042 | Iter & first, |
| 8043 | Sentinel last, |
| 8044 | Context const & context, |
| 8045 | SkipParser const & skip, |
| 8046 | detail::flags flags, |
| 8047 | bool & success) const |
| 8048 | { |
| 8049 | detail::nope nope; |
| 8050 | call(first, last, context, skip, flags, success, nope); |
| 8051 | return {}; |
| 8052 | } |
| 8053 | |
| 8054 | template< |
| 8055 | typename Iter, |
nothing calls this directly
no test coverage detected