summaryrefslogtreecommitdiffstats
path: root/include/ingen/Store.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Store.hpp')
-rw-r--r--include/ingen/Store.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ingen/Store.hpp b/include/ingen/Store.hpp
index 67ea16fa..1eb7a41a 100644
--- a/include/ingen/Store.hpp
+++ b/include/ingen/Store.hpp
@@ -44,7 +44,7 @@ public:
void add(Node* o);
Node* get(const raul::Path& path) {
- const iterator i = find(path);
+ const auto i = find(path);
return (i == end()) ? nullptr : i->second.get();
}