Changeset 5450 for source/ariba
- Timestamp:
 - Jul 29, 2009, 7:00:40 PM (16 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  source/ariba/overlay/modules/chord/Chord.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
source/ariba/overlay/modules/chord/Chord.cpp
r5436 r5450 191 191 192 192 if( table->get_successor() != NULL ){ 193 nodelist.push_back( *(table->get_successor()) ); 193 194 OverlayInterface::NodeList::iterator i = 195 std::find( nodelist.begin(), nodelist.end(), *(table->get_successor()) ); 196 if( i == nodelist.end() ) 197 nodelist.push_back( *(table->get_successor()) ); 194 198 } 195 199 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.