[Igarden-commit] Garden/source/LayoutDB BSPNode.cpp, 1.28.2.8, 1.28.2.9
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-05-17 21:02:40
|
Update of /cvsroot/igarden/Garden/source/LayoutDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv747/source/LayoutDB Modified Files: Tag: Release_branch_v1 BSPNode.cpp Log Message: Mark trace code as such (was #if 0) Index: BSPNode.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/BSPNode.cpp,v retrieving revision 1.28.2.8 retrieving revision 1.28.2.9 diff -C2 -d -r1.28.2.8 -r1.28.2.9 *** BSPNode.cpp 10 May 2008 22:50:40 -0000 1.28.2.8 --- BSPNode.cpp 17 May 2008 21:02:46 -0000 1.28.2.9 *************** *** 486,490 **** PRECONDITION(_lockDepth == 0); count = _elements.Length(); ! #if 0 printf("Delete %0lx\n", item); for(n = 0; n < count; n++) --- 486,490 ---- PRECONDITION(_lockDepth == 0); count = _elements.Length(); ! #if DEBUG_TRACE printf("Delete %0lx\n", item); for(n = 0; n < count; n++) *************** *** 505,509 **** if(!found && (_nodes[1] != NULL)) found = _nodes[1]->RemoveElement(item); ! #if 0 count = _elements.Length(); for(n = 0; n < count; n++) --- 505,509 ---- if(!found && (_nodes[1] != NULL)) found = _nodes[1]->RemoveElement(item); ! #if DEBUG_TRACE count = _elements.Length(); for(n = 0; n < count; n++) *************** *** 941,945 **** Add(element); } ! #if 0 long n, count; --- 941,945 ---- Add(element); } ! #if DEBUG_TRACE long n, count; |