| 119 | std::tuple<Functions...> functions; |
| 120 | template <typename Arg, typename... Args, meta::disable<std::is_same<meta::unqualified_t<Arg>, constructor_wrapper>> = meta::enabler> |
| 121 | constructor_wrapper(Arg&& arg, Args&&... args) : functions(std::forward<Arg>(arg), std::forward<Args>(args)...) { |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | template <typename... Functions> |
nothing calls this directly
no outgoing calls
no test coverage detected