From 62d76290ae0eb783db0e24338c17adb08d845a73 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 3 Jul 2006 22:13:38 +0000 Subject: Fixes for connecting directly from a patch input to a patch output git-svn-id: http://svn.drobilla.net/lad/ingen@81 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Patch.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/libs/engine/Patch.cpp') diff --git a/src/libs/engine/Patch.cpp b/src/libs/engine/Patch.cpp index 5cfdd6e3..d96e63b5 100644 --- a/src/libs/engine/Patch.cpp +++ b/src/libs/engine/Patch.cpp @@ -348,9 +348,11 @@ Patch::remove_port(const Port* port) Array* Patch::build_process_order() const { + cerr << "*********** BUILDING PROCESS ORDER FOR " << path() << endl; + Array* const process_order = new Array(_nodes.size()); - // FIXME: tweak algorithm so it just ends up like this and save the iteration? + // FIXME: tweak algorithm so it just ends up like this and save the cost of iteration? for (List::const_iterator i = _nodes.begin(); i != _nodes.end(); ++i) (*i)->traversed(false); -- cgit v1.2.1