| 2760 | template<class Handler> |
| 2761 | template<class... Args> |
| 2762 | basic_parser<Handler>:: |
| 2763 | basic_parser( |
| 2764 | parse_options const& opt, |
| 2765 | Args&&... args) |
| 2766 | : h_(std::forward<Args>(args)...) |
| 2767 | , opt_(opt) |
| 2768 | { |
| 2769 | } |
| 2770 | |
| 2771 | //---------------------------------------------------------- |
| 2772 |
nothing calls this directly
no outgoing calls
no test coverage detected