Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 11, 2012, 10:57:40 PM (12 years ago)
Author:
dafrick
Message:

Should fix internal warnig (and compile error introduced in last commit)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2012merge/src/modules/pickup/PickupCollection.cc

    r9292 r9293  
    7575        for(std::list<CollectiblePickup*>::iterator it = this->pickups_.begin(); it != this->pickups_.end(); ++it)
    7676        {
     77            if((*it)->isBeingDestroyed())
     78                continue;
     79
    7780            (*it)->wasRemovedFromCollection();
    7881            (*it)->destroyPickup();
     
    276279            return NULL;
    277280
    278         std::list<CollectiblePickup*>::iterator it = this->pickups_.begin();
     281        std::list<CollectiblePickup*>::const_iterator it = this->pickups_.begin();
    279282        std::advance(it, index);
    280283        return *it;
Note: See TracChangeset for help on using the changeset viewer.