summaryrefslogtreecommitdiffstats
path: root/ingen/DataAccess.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/DataAccess.hpp')
-rw-r--r--ingen/DataAccess.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/DataAccess.hpp b/ingen/DataAccess.hpp
index fb3e3a79..34b59a49 100644
--- a/ingen/DataAccess.hpp
+++ b/ingen/DataAccess.hpp
@@ -41,8 +41,8 @@ struct DataAccess : public ingen::LV2Features::Feature
const char* uri() const override { return "http://lv2plug.in/ns/ext/data-access"; }
- SPtr<LV2_Feature> feature(World* world, Node* node) override {
- Node* store_node = world->store()->get(node->path());
+ SPtr<LV2_Feature> feature(World& world, Node* node) override {
+ Node* store_node = world.store()->get(node->path());
if (!store_node) {
return SPtr<LV2_Feature>();
}