Ignore:
Timestamp:
Jul 29, 2009, 10:25:32 AM (15 years ago)
Author:
mies
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/communication/EndpointDescriptor.h

    r5284 r5406  
    111111        bool operator==(const EndpointDescriptor& rh) const {
    112112                if (rh.isUnspecified() && isUnspecified()) return true;
    113                 return false;
     113                return endpoints == rh.endpoints;
    114114        }
    115115
    116116        bool operator!=(const EndpointDescriptor& rh) const {
    117117                if (!rh.isUnspecified() && !isUnspecified()) return true;
    118                 return false;
     118                return endpoints != rh.endpoints;
    119119        }
    120120
Note: See TracChangeset for help on using the changeset viewer.