summaryrefslogtreecommitdiffstats
path: root/include/ingen
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen')
-rw-r--r--include/ingen/memory.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/ingen/memory.hpp b/include/ingen/memory.hpp
index e4bf6879..8b5a5140 100644
--- a/include/ingen/memory.hpp
+++ b/include/ingen/memory.hpp
@@ -17,8 +17,6 @@
#ifndef INGEN_MEMORY_HPP
#define INGEN_MEMORY_HPP
-#include "raul/Maid.hpp"
-
#include <cstdlib>
#include <memory>
@@ -30,9 +28,6 @@ void NullDeleter(T* ptr) {}
template <class T>
struct FreeDeleter { void operator()(T* const ptr) { free(ptr); } };
-template <class T>
-using MPtr = Raul::managed_ptr<T>;
-
template <typename T, typename... Args>
std::unique_ptr<T>
make_unique(Args&&... args)