- Timestamp:
- Nov 21, 2015, 7:05:53 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/module/StaticInitializationManager.cc
r10768 r10821 50 50 { 51 51 // attention: loading a module may add new handlers to the list 52 for ( std::list<StaticInitializationHandler*>::iterator it = this->handlers_.begin(); it != this->handlers_.end(); ++it)53 ( *it)->loadModule(module);52 for (auto & elem : this->handlers_) 53 (elem)->loadModule(module); 54 54 } 55 55
Note: See TracChangeset
for help on using the changeset viewer.