| 3315 | typename Context, |
| 3316 | typename SkipParser> |
| 3317 | auto call( |
| 3318 | Iter & first, |
| 3319 | Sentinel last, |
| 3320 | Context const & context, |
| 3321 | SkipParser const & skip, |
| 3322 | detail::flags flags, |
| 3323 | bool & success) const |
| 3324 | { |
| 3325 | using attr_t = decltype(parser_.call( |
| 3326 | first, last, context, skip, flags, success)); |
| 3327 | detail::optional_of<attr_t> retval; |
| 3328 | call(first, last, context, skip, flags, success, retval); |
| 3329 | return retval; |
| 3330 | } |
| 3331 | //] |
| 3332 | |
| 3333 | //[ opt_parser_out_param_call |
nothing calls this directly
no test coverage detected