- Timestamp:
- Dec 2, 2015, 11:22:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/controllers/WaypointController.cc
r10821 r10916 44 44 WaypointController::~WaypointController() 45 45 { 46 for ( auto & elem: this->waypoints_)46 for (WorldEntity* waypoint : this->waypoints_) 47 47 { 48 if( elem)49 elem->destroy();48 if(waypoint) 49 waypoint->destroy(); 50 50 } 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.