Changeset 10845 for code/branches/cpp11_v2/src/libraries/core/object
- Timestamp:
- Nov 23, 2015, 10:20:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/object/WeakPtr.h
r10817 r10845 124 124 125 125 /// Destructor 126 inline virtual~WeakPtr()126 virtual inline ~WeakPtr() 127 127 { 128 128 this->unregisterAsDestructionListener(this->base_); … … 230 230 private: 231 231 /// Will be called by Destroyable::~Destroyable() if the stored object is deleted. Resets the wrapped pointer and executes the callback. 232 inline void objectDeleted() override232 virtual inline void objectDeleted() override 233 233 { 234 234 this->base_ = nullptr;
Note: See TracChangeset
for help on using the changeset viewer.