Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2015, 11:22:03 PM (9 years ago)
Author:
landauf
Message:

use actual types instead of 'auto'. only exception is for complicated template types, e.g. when iterating over a map

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/core/Core.cc

    r10821 r10916  
    279279
    280280        const std::vector<std::string>& modulePaths = ApplicationPaths::getInstance().getModulePaths();
    281         for (const auto & modulePath : modulePaths)
     281        for (const std::string& modulePath : modulePaths)
    282282        {
    283283            ModuleInstance* module = new ModuleInstance(modulePath);
     
    309309    void Core::unloadModules()
    310310    {
    311         for (auto module : this->modules_)
    312         {
    313            
     311        for (ModuleInstance* module : this->modules_)
     312        {
    314313            this->unloadModule(module);
    315314            delete module;
Note: See TracChangeset for help on using the changeset viewer.