| 8559 | typename Context, |
| 8560 | typename SkipParser> |
| 8561 | T call( |
| 8562 | Iter & first, |
| 8563 | Sentinel last, |
| 8564 | Context const & context, |
| 8565 | SkipParser const & skip, |
| 8566 | detail::flags flags, |
| 8567 | bool & success) const |
| 8568 | { |
| 8569 | T retval = 0; |
| 8570 | call(first, last, context, skip, flags, success, retval); |
| 8571 | return retval; |
| 8572 | } |
| 8573 | |
| 8574 | template< |
| 8575 | typename Iter, |
nothing calls this directly
no test coverage detected