Changeset 8003 for trunk/tools/common/kList.cpp
- Timestamp:
- Feb 24, 2002, 3:47:28 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kList.cpp
r4129 r8003 1 /* $Id: kList.cpp,v 1. 3 2000-08-31 03:00:13bird Exp $ */1 /* $Id: kList.cpp,v 1.4 2002-02-24 02:47:28 bird Exp $ */ 2 2 /* 3 3 * Simple list and sorted list template class. … … 49 49 } 50 50 #ifdef DEBUG 51 if (cEntries != 0) 52 fprintf(stderr, 53 "%s(%d, %s)internal processing warning - cEntires was incorrect upon list destruction.", 54 __FILE__, __LINE__, __FUNCTION__); 51 kASSERT(cEntries == 0); 55 52 #endif 56 53 cEntries = 0; … … 195 192 } 196 193 #ifdef DEBUG 197 if (cEntries != 0) 198 fprintf(stderr, 199 "%s(%d, %s)internal processing warning - cEntires was incorrect upon list destruction.", 200 __FILE__, __LINE__, __FUNCTION__); 194 kASSERT(cEntries == 0); 201 195 #endif 202 196 cEntries = 0;
Note:
See TracChangeset
for help on using the changeset viewer.