- Timestamp:
- Nov 4, 2015, 10:25:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/class/IdentifierManager.cc
r10624 r10765 49 49 { 50 50 this->hierarchyCreatingCounter_s = 0; 51 this->recordTraceForIdentifier_ = NULL;51 this->recordTraceForIdentifier_ = nullptr; 52 52 } 53 53 … … 92 92 // iterate over all identifiers, create one instance of each class and initialize the identifiers 93 93 { 94 Context temporaryContext( NULL);94 Context temporaryContext(nullptr); 95 95 for (std::set<Identifier*>::const_iterator it = this->identifiers_.begin(); it != this->identifiers_.end(); ++it) 96 96 { … … 108 108 Identifiable* temp = identifier->fabricate(&temporaryContext); 109 109 110 this->recordTraceForIdentifier_ = NULL;110 this->recordTraceForIdentifier_ = nullptr; 111 111 112 112 if (temp->getIdentifier() != identifier) … … 149 149 150 150 // for all initialized identifiers, check if a sample instance behaves as expected according to the class hierarchy 151 Context temporaryContext( NULL);151 Context temporaryContext(nullptr); 152 152 for (std::set<Identifier*>::const_iterator it1 = initializedIdentifiers.begin(); it1 != initializedIdentifiers.end(); ++it1) 153 153 {
Note: See TracChangeset
for help on using the changeset viewer.