Changeset 5802
- Timestamp:
- Sep 26, 2009, 11:06:24 PM (15 years ago)
- Location:
- code/branches/core5/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/libraries/util/ScopedSingleton.h
r5738 r5802 93 93 if (T::singletonPtr_s) 94 94 { 95 delete T::singletonPtr_s;95 T::singletonPtr_s->destroy(); 96 96 T::singletonPtr_s = 0; 97 97 } -
code/branches/core5/src/orxonox/collisionshapes/CompoundCollisionShape.cc
r5738 r5802 56 56 // make sure that the child doesn't want to detach itself --> speedup because of the missing update 57 57 it->first->notifyDetached(); 58 delete it->first;58 it->first->destroy(); 59 59 } 60 60
Note: See TracChangeset
for help on using the changeset viewer.