| 240 | |
| 241 | template <typename T, typename... Args> |
| 242 | std::unique_ptr<T> make_unique(Args&&... args) { |
| 243 | return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); |
| 244 | } |
| 245 | |
| 246 | #endif // FU2_INCLUDED_FUNCTION2_TEST_HPP__ |
nothing calls this directly
no outgoing calls
no test coverage detected