summaryrefslogtreecommitdiffstats
path: root/src/shared/Store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Store.cpp')
-rw-r--r--src/shared/Store.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp
index 821322e7..ad950fd7 100644
--- a/src/shared/Store.cpp
+++ b/src/shared/Store.cpp
@@ -17,8 +17,7 @@
#include <sstream>
#include <string>
-#include "ingen/Node.hpp"
-#include "ingen/Port.hpp"
+#include "ingen/GraphObject.hpp"
#include "ingen/shared/Store.hpp"
#include "raul/PathTable.hpp"
#include "raul/TableImpl.hpp"
@@ -39,11 +38,8 @@ Store::add(GraphObject* o)
insert(make_pair(o->path(), o));
- Node* node = dynamic_cast<Node*>(o);
- if (node) {
- for (uint32_t i=0; i < node->num_ports(); ++i) {
- add(node->port(i));
- }
+ for (uint32_t i = 0; i < o->num_ports(); ++i) {
+ add(o->port(i));
}
}