summaryrefslogtreecommitdiffstats
path: root/src/engine/PatchImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 02:39:38 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 02:39:38 +0000
commit2d3e27ef80e4fc8704390ea7a878068b5ae6a370 (patch)
treec57b7e83b480c4547f0db99df59c5223ee62536b /src/engine/PatchImpl.cpp
parent1c217d7a8af8842f9b602383bb0b3e4a49209082 (diff)
downloadingen-2d3e27ef80e4fc8704390ea7a878068b5ae6a370.tar.gz
ingen-2d3e27ef80e4fc8704390ea7a878068b5ae6a370.tar.bz2
ingen-2d3e27ef80e4fc8704390ea7a878068b5ae6a370.zip
Fix compilation with --log-debug.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2356 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/PatchImpl.cpp')
-rw-r--r--src/engine/PatchImpl.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/engine/PatchImpl.cpp b/src/engine/PatchImpl.cpp
index 4dc61a21..c2d60de8 100644
--- a/src/engine/PatchImpl.cpp
+++ b/src/engine/PatchImpl.cpp
@@ -27,6 +27,7 @@
#include "DuplexPort.hpp"
#include "Engine.hpp"
#include "ProcessSlave.hpp"
+#include "ingen-config.h"
using namespace std;
using namespace Raul;
@@ -466,10 +467,8 @@ PatchImpl::compile() const
#ifdef LOG_DEBUG
debug << path() << " compiled {" << endl;
- for (size_t i=0; i < process_order->size(); ++i) {
- assert(process_order->at(i));
- debug << " " << process_order->at(i)->path() << endl;
- }
+ for (size_t i=0; i < compiled_patch->size(); ++i)
+ debug << " " << compiled_patch->at(i).node()->path() << endl;
debug << "}" << endl;
#endif