| 13 | |
| 14 | template <typename T> |
| 15 | void set_options(T&& arg) { |
| 16 | set_option(std::forward<T>(arg)); |
| 17 | } |
| 18 | |
| 19 | template <typename T, typename... Args> |
| 20 | void set_options(T&& first, Args&&... rem_args) { |
nothing calls this directly
no outgoing calls
no test coverage detected