- Timestamp:
- Nov 21, 2015, 7:05:53 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/network/synchronisable/Synchronisable.cc
r10768 r10821 88 88 } 89 89 // delete all Synchronisable Variables from syncList_ ( which are also in stringList_ ) 90 for( std::vector<SynchronisableVariableBase*>::iterator it = syncList_.begin(); it!=syncList_.end(); it++)91 delete ( *it);90 for(auto & elem : syncList_) 91 delete (elem); 92 92 syncList_.clear(); 93 93 stringList_.clear();
Note: See TracChangeset
for help on using the changeset viewer.