| 1100 | template <typename... Args, |
| 1101 | typename = typename std::enable_if<std::is_constructible<T, Args...>::value>::type> |
| 1102 | explicit Setting(Args &&... args) : value(std::forward<Args>(args)...) {} |
| 1103 | Setting(const Setting &) = default; |
| 1104 | Setting(Setting &&) = default; |
| 1105 |
nothing calls this directly
no outgoing calls
no test coverage detected