Changeset 9809 in orxonox.OLD
- Timestamp:
- Sep 25, 2006, 12:42:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/lang/base_object.cc
r9807 r9809 42 42 /// Remove from the ObjectLists 43 43 ClassEntries::iterator it; 44 printf("Deleting Object of type %s::%s\n", this->getClassCName(), getCName());44 PRINTF(5)("Deleting Object of type %s::%s\n", this->getClassCName(), getCName()); 45 45 for (it = this->_classes.begin(); it != this->_classes.end(); ++it) 46 46 { 47 assert((*it)._objectList->checkIteratorInList((*it)._iterator) || (*it)._objectList->checkObjectInList(this)); 47 if (ORX_DEBUG >= 5) 48 assert((*it)._objectList->checkIteratorInList((*it)._iterator) || (*it)._objectList->checkObjectInList(this)); 48 49 (*it)._objectList->unregisterObject((*it)._iterator); 49 50 delete (*it)._iterator;
Note: See TracChangeset
for help on using the changeset viewer.