summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ingen/Properties.hpp2
-rw-r--r--include/ingen/Store.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ingen/Properties.hpp b/include/ingen/Properties.hpp
index 300d1a78..95b7eaf9 100644
--- a/include/ingen/Properties.hpp
+++ b/include/ingen/Properties.hpp
@@ -82,7 +82,7 @@ public:
}
bool contains(const URI& key, const Atom& value) {
- for (const_iterator i = find(key); i != end() && i->first == key; ++i) {
+ for (auto i = find(key); i != end() && i->first == key; ++i) {
if (i->second == value) {
return true;
}
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();
}