| 7426 | typename Context, |
| 7427 | typename SkipParser> |
| 7428 | auto call( |
| 7429 | Iter & first, |
| 7430 | Sentinel last, |
| 7431 | Context const & context, |
| 7432 | SkipParser const & skip, |
| 7433 | detail::flags flags, |
| 7434 | bool & success) const -> attribute_type<decltype(*first)> |
| 7435 | { |
| 7436 | attribute_type<decltype(*first)> retval{}; |
| 7437 | call(first, last, context, skip, flags, success, retval); |
| 7438 | return retval; |
| 7439 | } |
| 7440 | |
| 7441 | template< |
| 7442 | typename Iter, |
nothing calls this directly
no test coverage detected