Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 22, 2009, 10:05:38 PM (14 years ago)
Author:
rgrieder
Message:

Replaced (*it). with it→ where I could find it. Should increased code readability.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/libraries/core/BaseObject.cc

    r6394 r6400  
    291291        std::map<std::string, EventState*>::const_iterator it = this->eventStates_.find(name);
    292292        if (it != this->eventStates_.end())
    293             return ((*it).second);
     293            return (it->second);
    294294        else
    295295            return 0;
Note: See TracChangeset for help on using the changeset viewer.