aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/machina')
-rw-r--r--src/engine/machina/Machine.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/machina/Machine.hpp b/src/engine/machina/Machine.hpp
index e5bef23..7424f31 100644
--- a/src/engine/machina/Machine.hpp
+++ b/src/engine/machina/Machine.hpp
@@ -61,7 +61,7 @@ public:
void clear_pending_learn() { _pending_learn.reset(); }
typedef Raul::List<SharedPtr<Node> > Nodes;
- const Nodes& nodes() { return _nodes; }
+ Nodes& nodes() { return _nodes; }
void set_sink(SharedPtr<Raul::MIDISink> sink);