summaryrefslogtreecommitdiffstats
path: root/include/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-09-27 16:51:54 -0400
committerDavid Robillard <d@drobilla.net>2022-09-27 16:51:54 -0400
commit1546edc9bed5a4f82088578e73447699feed1216 (patch)
tree0769ae7f048f9796c26740fc8c3c68ce3543027c /include/ingen
parentf4866b97d444dcdc6275a13f6be1f8a9e039d927 (diff)
downloadingen-1546edc9bed5a4f82088578e73447699feed1216.tar.gz
ingen-1546edc9bed5a4f82088578e73447699feed1216.tar.bz2
ingen-1546edc9bed5a4f82088578e73447699feed1216.zip
Fix field shadowing
Diffstat (limited to 'include/ingen')
-rw-r--r--include/ingen/Node.hpp6
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