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

Location:
code/branches/cpp11_v2/src/orxonox/interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/orxonox/interfaces/PickupCarrier.cc

    r10821 r10916  
    135135        // Go recursively through all children to check whether they are the target.
    136136        std::vector<PickupCarrier*>* children = this->getCarrierChildren();
    137         for(auto & elem : *children)
     137        for(PickupCarrier* child : *children)
    138138        {
    139             if(pickup->isTarget(elem))
     139            if(pickup->isTarget(child))
    140140            {
    141                 target = elem;
     141                target = child;
    142142                break;
    143143            }
  • code/branches/cpp11_v2/src/orxonox/interfaces/Pickupable.cc

    r10821 r10916  
    160160    {
    161161        // Iterate through all targets of this Pickupable.
    162         for(const auto & elem : this->targets_)
     162        for(Identifier* target : this->targets_)
    163163        {
    164             if(identifier->isA(elem))
     164            if(identifier->isA(target))
    165165                return true;
    166166        }
Note: See TracChangeset for help on using the changeset viewer.