Changeset 10916 for code/branches/cpp11_v2/src/libraries/core/Core.cc
- Timestamp:
- Dec 2, 2015, 11:22:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/Core.cc
r10821 r10916 279 279 280 280 const std::vector<std::string>& modulePaths = ApplicationPaths::getInstance().getModulePaths(); 281 for (const auto& modulePath : modulePaths)281 for (const std::string& modulePath : modulePaths) 282 282 { 283 283 ModuleInstance* module = new ModuleInstance(modulePath); … … 309 309 void Core::unloadModules() 310 310 { 311 for (auto module : this->modules_) 312 { 313 311 for (ModuleInstance* module : this->modules_) 312 { 314 313 this->unloadModule(module); 315 314 delete module;
Note: See TracChangeset
for help on using the changeset viewer.