Changeset 3705 for source/ariba/utility/types
- Timestamp:
- May 26, 2009, 4:27:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/types/Identifier.cpp
r3690 r3705 319 319 } 320 320 bool Identifier::operator==(const Identifier& compKey) const { 321 return compareTo(compKey) == 0; 321 322 if( this->isUnspecified() && compKey.isUnspecified() ) 323 return true; 324 else 325 return compareTo(compKey) == 0; 322 326 } 323 327 bool Identifier::operator!=(const Identifier& compKey) const { … … 599 603 //as mpn_random has no seeding function 600 604 // we mess aroung here a little to achive some randomness 601 // using the rand function that _is_ seeded in the 605 // using the rand function that _is_ seeded in the 602 606 // StartupWrapper::initSystem function 603 607
Note:
See TracChangeset
for help on using the changeset viewer.