summaryrefslogtreecommitdiffstats
path: root/include/ingen/memory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/memory.hpp')
-rw-r--r--include/ingen/memory.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/ingen/memory.hpp b/include/ingen/memory.hpp
index 82e98bdf..6a62d317 100644
--- a/include/ingen/memory.hpp
+++ b/include/ingen/memory.hpp
@@ -29,13 +29,6 @@ void NullDeleter(T* ptr) {}
template <class T>
struct FreeDeleter { void operator()(T* const ptr) { free(ptr); } };
-template <typename T, typename... Args>
-std::unique_ptr<T>
-make_unique(Args&&... args)
-{
- return std::unique_ptr<T>{new T{std::forward<Args>(args)...}};
-}
-
} // namespace ingen
#endif // INGEN_MEMORY_HPP