| 323 | // create_foo(1,2) == foo(1, 2); |
| 324 | template <typename T, class... Types> |
| 325 | T constructor_as_function(Types... args) |
| 326 | { |
| 327 | return T(args...); |
| 328 | } |
| 329 | |
| 330 | } // namespace fplus |
| 331 |
nothing calls this directly
no outgoing calls
no test coverage detected