Changeset 11071 for code/trunk/src/orxonox/controllers/MasterController.cc
- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/controllers/MasterController.cc
r11052 r11071 58 58 { 59 59 //fill the vector in the first tick 60 for ( ObjectList<ActionpointController>::iterator it = ObjectList<ActionpointController>::begin(); it; ++it)60 for (ActionpointController* controller : ObjectList<ActionpointController>()) 61 61 { 62 62 //----0ptr?---- 63 if (! it)63 if (!controller) 64 64 continue; 65 this->controllers_.push_back( *it);65 this->controllers_.push_back(controller); 66 66 } 67 67 }
Note: See TracChangeset
for help on using the changeset viewer.