| 5974 | `parser_((Arg &&)arg, (Args &&)args...)` is well-formed. */ |
| 5975 | template<typename Arg, typename... Args> |
| 5976 | constexpr auto operator()(Arg && arg, Args &&... args) const noexcept |
| 5977 | -> decltype(std::declval<parser_type const &>()( |
| 5978 | (Arg &&) arg, (Args &&) args...)) |
| 5979 | { |
| 5980 | return parser_((Arg &&) arg, (Args &&) args...); |
| 5981 | } |
| 5982 | |
| 5983 | #ifndef BOOST_PARSER_DOXYGEN |
| 5984 |
nothing calls this directly
no test coverage detected