Changeset 4979 in orxonox.OLD for orxonox/trunk/src/util/fast_factory.cc
- Timestamp:
- Aug 10, 2005, 4:47:23 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/fast_factory.cc
r4951 r4979 81 81 } 82 82 83 84 83 /** 85 84 * searches for a FastFactory … … 135 134 while (tmpFac != NULL) 136 135 { 136 printf("DELETEING ALL OF %s\n",tmpFac->getName()); 137 137 tmpFac->flush(hardFLUSH); 138 138 tmpFac = tmpFac->next; … … 140 140 } 141 141 142 143 142 /** 144 143 * ereases all the remaining containers, without deleting the stored Objects inside of them. … … 152 151 delMember = tmpMember; 153 152 tmpMember = tmpMember->next; 154 if (unlikely(hardFLUSH == true)) 153 if (hardFLUSH) 154 { 155 PRINTF(1)("COOL\n"); 155 156 delete delMember->objectPointer; 157 } 156 158 delete delMember; 157 159 } … … 267 269 tmpFac = tmpFac->next; 268 270 } 269 270 } 271 } 271 } 272 }
Note: See TracChangeset
for help on using the changeset viewer.