summaryrefslogtreecommitdiffstats
path: root/include/ingen/Log.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
commitbdbdf42f3fe990c713c5437724db39274c387eee (patch)
tree7f921a04fd580da6bcb6fc8975fa2aebfcd93e0f /include/ingen/Log.hpp
parentec0b87a18623c17c16f6a648fcf277abe14142b7 (diff)
downloadingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.gz
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.bz2
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.zip
Remove std::shared_ptr alias
Diffstat (limited to 'include/ingen/Log.hpp')
-rw-r--r--include/ingen/Log.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ingen/Log.hpp b/include/ingen/Log.hpp
index 96f03ae2..ae8e7539 100644
--- a/include/ingen/Log.hpp
+++ b/include/ingen/Log.hpp
@@ -20,7 +20,6 @@
#include "ingen/LV2Features.hpp"
#include "ingen/fmt.hpp"
#include "ingen/ingen.h"
-#include "ingen/memory.hpp"
#include "lv2/core/lv2.h"
#include "lv2/log/log.h"
#include "lv2/urid/urid.h"
@@ -28,6 +27,7 @@
#include <cstdarg>
#include <cstdio>
#include <functional>
+#include <memory>
#include <string>
#include <utility>
@@ -46,7 +46,8 @@ public:
struct Feature : public LV2Features::Feature {
const char* uri() const override { return LV2_LOG__log; }
- SPtr<LV2_Feature> feature(World& world, Node* block) override;
+ std::shared_ptr<LV2_Feature>
+ feature(World& world, Node* block) override;
struct Handle {
LV2_Log_Log lv2_log;