Changeset 10821 for code/branches/cpp11_v2/src/orxonox/interfaces
- Timestamp:
- Nov 21, 2015, 7:05:53 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox/interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/interfaces/PickupCarrier.cc
r10765 r10821 135 135 // Go recursively through all children to check whether they are the target. 136 136 std::vector<PickupCarrier*>* children = this->getCarrierChildren(); 137 for( std::vector<PickupCarrier*>::iterator it = children->begin(); it != children->end(); it++)137 for(auto & elem : *children) 138 138 { 139 if(pickup->isTarget( *it))139 if(pickup->isTarget(elem)) 140 140 { 141 target = *it;141 target = elem; 142 142 break; 143 143 } -
code/branches/cpp11_v2/src/orxonox/interfaces/Pickupable.cc
r10765 r10821 160 160 { 161 161 // Iterate through all targets of this Pickupable. 162 for( std::list<Identifier*>::const_iterator it = this->targets_.begin(); it != this->targets_.end(); it++)162 for(const auto & elem : this->targets_) 163 163 { 164 if(identifier->isA( *it))164 if(identifier->isA(elem)) 165 165 return true; 166 166 }
Note: See TracChangeset
for help on using the changeset viewer.