summaryrefslogtreecommitdiffstats
path: root/include/ingen/memory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 15:39:43 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 15:39:43 +0200
commitb979d48b8570610db121cabc6352a47145922f27 (patch)
tree859803be21f10398bd9cf06d04426bacc5c2ac73 /include/ingen/memory.hpp
parentbdbdf42f3fe990c713c5437724db39274c387eee (diff)
downloadingen-b979d48b8570610db121cabc6352a47145922f27.tar.gz
ingen-b979d48b8570610db121cabc6352a47145922f27.tar.bz2
ingen-b979d48b8570610db121cabc6352a47145922f27.zip
Remove Raul::managed_ptr alias
Diffstat (limited to 'include/ingen/memory.hpp')
-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)