Changeset 5406 for source/ariba/communication/EndpointDescriptor.h
- Timestamp:
- Jul 29, 2009, 10:25:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/EndpointDescriptor.h
r5284 r5406 111 111 bool operator==(const EndpointDescriptor& rh) const { 112 112 if (rh.isUnspecified() && isUnspecified()) return true; 113 return false;113 return endpoints == rh.endpoints; 114 114 } 115 115 116 116 bool operator!=(const EndpointDescriptor& rh) const { 117 117 if (!rh.isUnspecified() && !isUnspecified()) return true; 118 return false;118 return endpoints != rh.endpoints; 119 119 } 120 120
Note:
See TracChangeset
for help on using the changeset viewer.