#ifndef MEMORY_HH #define MEMORY_HH #include template std::unique_ptr make_unique(T *p, Deleter d) { return std::unique_ptr(p, d); } #endif