| 169 | */ |
| 170 | template <typename T> |
| 171 | T* construct() { |
| 172 | return new T; |
| 173 | } |
| 174 | |
| 175 | template <typename T, typename F, typename V, typename... Args> |
| 176 | T* construct(F f, V v, Args... args) { |
nothing calls this directly
no outgoing calls
no test coverage detected