Changeset 10422 for code/branches/core7/src
- Timestamp:
- May 3, 2015, 3:49:13 PM (10 years ago)
- Location:
- code/branches/core7/src/libraries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/Identifier.h
r10403 r10422 315 315 ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*) IdentifierManager::getInstance().getIdentifierByTypeInfo(typeid(T)); 316 316 317 OrxVerify(ClassIdentifier<T>::classIdentifier_s != NULL, " Assertion failed in ClassIdentifier of type " << typeid(T).name());317 OrxVerify(ClassIdentifier<T>::classIdentifier_s != NULL, "Did you forget to register the class of type " << typeid(T).name() << "?"); 318 318 return ClassIdentifier<T>::classIdentifier_s; 319 319 } -
code/branches/core7/src/libraries/util/SharedPtr.h
r8351 r10422 138 138 OtherClass* other3 = new OtherClass(object); // " 139 139 140 } // The S martPtr "object" is destroyed at the end of the scope,140 } // The SharedPtr "object" is destroyed at the end of the scope, 141 141 // but the three instances of OtherClass keep the object alive 142 142 // until they are all destroyed.
Note: See TracChangeset
for help on using the changeset viewer.