| 7499 | /// Wrap _parse_subcommand, perfectly forward arguments and return |
| 7500 | template <typename... Args> |
| 7501 | static decltype(auto) parse_subcommand(App *app, Args &&...args) { |
| 7502 | return app->_parse_subcommand(std::forward<Args>(args)...); |
| 7503 | } |
| 7504 | #else |
| 7505 | /// Wrap _parse_short, perfectly forward arguments and return |
| 7506 | template <typename... Args> |
nothing calls this directly
no test coverage detected