From 1de7af2e453735869122ca61f65be157d7b799bd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jan 2010 05:30:22 +0000 Subject: Remove excessive debug output of compiled patch order. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2360 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/PatchImpl.cpp | 12 ------------ 1 file changed, 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; } -- cgit v1.2.1