diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/PatchImpl.cpp | 12 |
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; } |