| 55 | struct UniqueConstructor { |
| 56 | template <class T, typename... ARGS> |
| 57 | static unique_ptr<T> Create(ARGS&&... args) { |
| 58 | return make_unique<T>(std::forward<ARGS>(args)...); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | #ifdef DUCKDB_DEBUG_MOVE |
nothing calls this directly
no outgoing calls
no test coverage detected