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.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/ingen/memory.hpp b/include/ingen/memory.hpp
index 82a1e2a6..bec86c43 100644
--- a/include/ingen/memory.hpp
+++ b/include/ingen/memory.hpp
@@ -30,9 +30,6 @@ void NullDeleter(T* ptr) {}
template <class T>
struct FreeDeleter { void operator()(T* const ptr) { free(ptr); } };
-template <class T, class Deleter = std::default_delete<T>>
-using UPtr = std::unique_ptr<T, Deleter>;
-
template <class T>
using SPtr = std::shared_ptr<T>;