Changeset 12760 for source/ariba
- Timestamp:
- Mar 12, 2014, 6:07:13 PM (11 years ago)
- Location:
- source/ariba
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.cpp
r12060 r12760 66 66 67 67 BaseCommunication::BaseCommunication() 68 : currentSeqnum( 0 ), 68 : listenOn_endpoints(new addressing2::endpoint_set()), 69 currentSeqnum( 0 ), 69 70 transport( NULL ), 70 71 messageReceiver( NULL ), 71 started( false ), 72 listenOn_endpoints(new addressing2::endpoint_set()) 72 started( false ) 73 73 { 74 74 } -
source/ariba/overlay/BaseOverlay.cpp
r12438 r12760 506 506 overlayInterface->getSortedLinkIdsTowardsNode( destination ); 507 507 508 for ( int i = 0; i < next_ids.size(); i++ )508 for ( size_t i = 0; i < next_ids.size(); i++ ) 509 509 { 510 510 const LinkID& link = *next_ids[i]; … … 2030 2030 } 2031 2031 } 2032 2033 return true; // XXX when shall we return false..? 2032 2034 } 2033 2035 … … 2040 2042 lst->onPong(overlayMsg->getSourceNode()); 2041 2043 } 2044 2045 return true; // XXX when shall we return false..? 2042 2046 } 2043 2047
Note:
See TracChangeset
for help on using the changeset viewer.