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.hpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/ingen/Store.hpp b/include/ingen/Store.hpp
index 67ea16fa..d18858fb 100644
--- a/include/ingen/Store.hpp
+++ b/include/ingen/Store.hpp
@@ -17,17 +17,19 @@
#ifndef INGEN_STORE_HPP
#define INGEN_STORE_HPP
-#include "ingen/ingen.h"
-#include "raul/Deletable.hpp"
-#include "raul/Noncopyable.hpp"
-#include "raul/Path.hpp"
+#include <ingen/ingen.h>
+#include <raul/Deletable.hpp>
+#include <raul/Noncopyable.hpp>
+#include <raul/Path.hpp>
#include <map>
#include <memory>
#include <mutex>
#include <utility>
-namespace raul { class Symbol; }
+namespace raul {
+class Symbol;
+} // namespace raul
namespace ingen {
@@ -44,7 +46,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();
}