| 7493 | /// Wrap _parse_short, perfectly forward arguments and return |
| 7494 | template <typename... Args> |
| 7495 | static decltype(auto) parse_arg(App *app, Args &&...args) { |
| 7496 | return app->_parse_arg(std::forward<Args>(args)...); |
| 7497 | } |
| 7498 | |
| 7499 | /// Wrap _parse_subcommand, perfectly forward arguments and return |
| 7500 | template <typename... Args> |
nothing calls this directly
no test coverage detected