summaryrefslogtreecommitdiffstats
path: root/ingen/Store.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/Store.hpp')
-rw-r--r--ingen/Store.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/Store.hpp b/ingen/Store.hpp
index 485b7355..52c9012b 100644
--- a/ingen/Store.hpp
+++ b/ingen/Store.hpp
@@ -45,7 +45,7 @@ public:
Node* get(const Raul::Path& path) {
const iterator i = find(path);
- return (i == end()) ? NULL : i->second.get();
+ return (i == end()) ? nullptr : i->second.get();
}
typedef std::pair<const_iterator, const_iterator> const_range;