diff options
author | David Robillard <d@drobilla.net> | 2020-08-02 15:39:43 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 15:39:43 +0200 |
commit | b979d48b8570610db121cabc6352a47145922f27 (patch) | |
tree | 859803be21f10398bd9cf06d04426bacc5c2ac73 /include/ingen | |
parent | bdbdf42f3fe990c713c5437724db39274c387eee (diff) | |
download | ingen-b979d48b8570610db121cabc6352a47145922f27.tar.gz ingen-b979d48b8570610db121cabc6352a47145922f27.tar.bz2 ingen-b979d48b8570610db121cabc6352a47145922f27.zip |
Remove Raul::managed_ptr alias
Diffstat (limited to 'include/ingen')
-rw-r--r-- | include/ingen/memory.hpp | 5 |
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) |