| 1528 | |
| 1529 | /// Wrap _parse_subcommand, perfectly forward arguments and return |
| 1530 | template <typename... Args> static decltype(auto) parse_subcommand(App *app, Args &&...args) { |
| 1531 | return app->_parse_subcommand(std::forward<Args>(args)...); |
| 1532 | } |
| 1533 | #else |
| 1534 | /// Wrap _parse_short, perfectly forward arguments and return |
| 1535 | template <typename... Args> |
nothing calls this directly
no test coverage detected