| 111 | |
| 112 | template<class Cls, typename... Args> |
| 113 | Cls* apply_constructor(const std::tuple<Args...>& tup) |
| 114 | { |
| 115 | return apply_constructor_helper<Cls>(typename make_indexes<Args...>::type(), std::tuple<Args...>(tup)); |
| 116 | } |
| 117 | |
| 118 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 119 |
nothing calls this directly
no outgoing calls
no test coverage detected