Changeset 10768 for code/branches/cpp11_v2/src/libraries/core/XMLPort.h
- Timestamp:
- Nov 6, 2015, 10:54:34 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/XMLPort.h
r9667 r10768 245 245 return my_added_objects[index]; 246 246 else 247 return 0;247 return nullptr; 248 248 } 249 249 @endcode … … 399 399 // Iterate through the attributes manually in order to make them case insensitive 400 400 ticpp::Attribute* attribute = xmlelement.FirstAttribute(false); 401 while (attribute != 0)401 while (attribute != nullptr) 402 402 { 403 403 this->owner_->xmlAttributes_[getLowercase(attribute->Name())] = attribute->Value();
Note: See TracChangeset
for help on using the changeset viewer.