| 7191 | typename Context, |
| 7192 | typename SkipParser> |
| 7193 | auto call( |
| 7194 | Iter & first, |
| 7195 | Sentinel last, |
| 7196 | Context const & context, |
| 7197 | SkipParser const & skip, |
| 7198 | detail::flags flags, |
| 7199 | bool & success) const -> attribute_type<decltype(*first)> |
| 7200 | { |
| 7201 | attribute_type<decltype(*first)> retval{}; |
| 7202 | call(first, last, context, skip, flags, success, retval); |
| 7203 | return retval; |
| 7204 | } |
| 7205 | |
| 7206 | template< |
| 7207 | typename Iter, |
nothing calls this directly
no test coverage detected