aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-11 18:05:56 +0000
committerDavid Robillard <d@drobilla.net>2011-06-11 18:05:56 +0000
commita2f4e81f1e432c3260b9d076feca5834a780ed31 (patch)
tree7379227412b66ada199b8ceaf5fc1cfa00c8d63d /src/engine
parentd4785081aea2092ac7a98e1ef3ec6031574286e8 (diff)
downloadmachina-a2f4e81f1e432c3260b9d076feca5834a780ed31.tar.gz
machina-a2f4e81f1e432c3260b9d076feca5834a780ed31.tar.bz2
machina-a2f4e81f1e432c3260b9d076feca5834a780ed31.zip
Remove dead code.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@3385 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/Machine.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp
index 41e3573..bd3c87f 100644
--- a/src/engine/Machine.cpp
+++ b/src/engine/Machine.cpp
@@ -384,8 +384,6 @@ Machine::write_state(Sord::Model& model)
Sord::Curie(model.world(), "rdf:type"),
Sord::Curie(model.world(), "machina:Machine"));
- size_t count = 0;
-
for (Nodes::const_iterator n = _nodes.begin(); n != _nodes.end(); ++n) {
(*n)->write_state(model);
@@ -401,8 +399,6 @@ Machine::write_state(Sord::Model& model)
}
}
- count = 0;
-
for (Nodes::const_iterator n = _nodes.begin(); n != _nodes.end(); ++n) {
for (Node::Edges::const_iterator e = (*n)->edges().begin();