Changeset 10916 for code/branches/cpp11_v2/src/orxonox/items
- Timestamp:
- Dec 2, 2015, 11:22:03 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox/items
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/items/MultiStateEngine.cc
r10821 r10916 219 219 { 220 220 unsigned int i = 0; 221 for ( const auto & elem: this->effectContainers_)221 for (EffectContainer* effectContainer : this->effectContainers_) 222 222 { 223 223 if (i == index) 224 return (elem);224 return effectContainer; 225 225 i++; 226 226 } -
code/branches/cpp11_v2/src/orxonox/items/ShipPart.cc
r10821 r10916 143 143 @brief 144 144 Check whether the ShipPart has a particular Entity. 145 @param engine145 @param search 146 146 A pointer to the Entity to be checked. 147 147 */ 148 bool ShipPart::hasEntity(StaticEntity* entity) const149 { 150 for( auto & elem: this->entityList_)151 { 152 if(e lem == entity)148 bool ShipPart::hasEntity(StaticEntity* search) const 149 { 150 for(StaticEntity* entity : this->entityList_) 151 { 152 if(entity == search) 153 153 return true; 154 154 }
Note: See TracChangeset
for help on using the changeset viewer.