Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2015, 11:22:03 PM (9 years ago)
Author:
landauf
Message:

use actual types instead of 'auto'. only exception is for complicated template types, e.g. when iterating over a map

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/orxonox/items/ShipPart.cc

    r10821 r10916  
    143143    @brief
    144144        Check whether the ShipPart has a particular Entity.
    145     @param engine
     145    @param search
    146146        A pointer to the Entity to be checked.
    147147    */
    148     bool ShipPart::hasEntity(StaticEntity* entity) const
    149     {
    150         for(auto & elem : this->entityList_)
    151         {
    152             if(elem == entity)
     148    bool ShipPart::hasEntity(StaticEntity* search) const
     149    {
     150        for(StaticEntity* entity : this->entityList_)
     151        {
     152            if(entity == search)
    153153                return true;
    154154        }
Note: See TracChangeset for help on using the changeset viewer.