Changeset 10518 for code/branches/core7/src/libraries/core/class
- Timestamp:
- May 31, 2015, 10:56:32 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/IdentifierManager.cc
r10483 r10518 100 100 { 101 101 Identifier* identifier = (*it); 102 if (identifier->isInitialized()) 103 continue; 102 104 103 105 orxout(verbose, context::identifier) << "Initialize ClassIdentifier<" << identifier->getName() << ">-Singleton." << endl; … … 135 137 if (initializedIdentifiers.find(identifier) != initializedIdentifiers.end()) 136 138 identifier->finishInitialization(); 137 else 139 else if (!identifier->isInitialized()) 138 140 orxout(internal_error) << "Identifier was registered late and is not initialized: " << identifier->getName() << " / " << identifier->getTypeInfo().name() << endl; 139 141 }
Note: See TracChangeset
for help on using the changeset viewer.