summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 05:30:22 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 05:30:22 +0000
commit1de7af2e453735869122ca61f65be157d7b799bd (patch)
tree194908c90d0339f9df1ecaab4227ff060f8f7138 /src
parenta331396346b457e4e359997661feafa014736abd (diff)
downloadingen-1de7af2e453735869122ca61f65be157d7b799bd.tar.gz
ingen-1de7af2e453735869122ca61f65be157d7b799bd.tar.bz2
ingen-1de7af2e453735869122ca61f65be157d7b799bd.zip
Remove excessive debug output of compiled patch order.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2360 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/engine/PatchImpl.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/engine/PatchImpl.cpp b/src/engine/PatchImpl.cpp
index c2d60de8..fb1db54e 100644
--- a/src/engine/PatchImpl.cpp
+++ b/src/engine/PatchImpl.cpp
@@ -465,20 +465,8 @@ PatchImpl::compile() const
compile_recursive(node, compiled_patch);
}
-#ifdef LOG_DEBUG
- debug << path() << " compiled {" << endl;
- for (size_t i=0; i < compiled_patch->size(); ++i)
- debug << " " << compiled_patch->at(i).node()->path() << endl;
- debug << "}" << endl;
-#endif
-
assert(compiled_patch->size() == _nodes.size());
-#ifndef NDEBUG
- for (size_t i=0; i < compiled_patch->size(); ++i)
- assert(compiled_patch->at(i).node());
-#endif
-
return compiled_patch;
}