diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ingen/Node.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ingen/Node.hpp b/include/ingen/Node.hpp index 412dd64a..c8006a8e 100644 --- a/include/ingen/Node.hpp +++ b/include/ingen/Node.hpp @@ -65,8 +65,8 @@ public: using Arcs = std::map<ArcsKey, std::shared_ptr<Arc>>; // Graphs only - Arcs& arcs() { return _arcs; } - const Arcs& arcs() const { return _arcs; } + Arcs& arcs() { return _graph_arcs; } + const Arcs& arcs() const { return _graph_arcs; } // Blocks and graphs only virtual uint32_t num_ports() const { return 0; } @@ -98,7 +98,7 @@ protected: : Resource(uris, path_to_uri(path)) {} - Arcs _arcs; ///< Graphs only + Arcs _graph_arcs; ///< Graphs only }; } // namespace ingen |