Changeset 1338 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp


Ignore:
Timestamp:
Jun 12, 2002, 9:26:02 AM (23 years ago)
Author:
darin
Message:
  • kjs/nodes.cpp: (Node::finalCheck): A bit of APPLE_CHANGES so we can compile with KJS_DEBUG_MEM defined if we want to.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/nodes.cpp

    r1272 r1338  
    9797void Node::finalCheck()
    9898{
     99#ifdef APPLE_CHANGES
     100  fprintf( stderr, "Node::finalCheck(): list count       : %d\n", (int)s_nodes.size() );
     101#else
    99102  fprintf( stderr, "Node::finalCheck(): list count       : %d\n", s_nodes.size() );
     103#endif
    100104  std::list<Node *>::iterator it = s_nodes.begin();
    101105  for ( uint i = 0; it != s_nodes.end() ; ++it, ++i )
Note: See TracChangeset for help on using the changeset viewer.