From bdbdf42f3fe990c713c5437724db39274c387eee Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Aug 2020 15:23:19 +0200 Subject: Remove std::shared_ptr alias --- include/ingen/InstanceAccess.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/ingen/InstanceAccess.hpp') diff --git a/include/ingen/InstanceAccess.hpp b/include/ingen/InstanceAccess.hpp index 500f4902..ef8b3be0 100644 --- a/include/ingen/InstanceAccess.hpp +++ b/include/ingen/InstanceAccess.hpp @@ -21,7 +21,6 @@ #include "ingen/Node.hpp" #include "ingen/Store.hpp" #include "ingen/World.hpp" -#include "ingen/memory.hpp" #include "lilv/lilv.h" #include "lv2/core/lv2.h" @@ -34,7 +33,7 @@ struct InstanceAccess : public ingen::LV2Features::Feature { const char* uri() const override { return "http://lv2plug.in/ns/ext/instance-access"; } - SPtr feature(World& world, Node* node) override { + std::shared_ptr feature(World& world, Node* node) override { Node* store_node = world.store()->get(node->path()); if (!store_node) { return nullptr; -- cgit v1.2.1