Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5838


Ignore:
Timestamp:
Sep 30, 2009, 10:21:51 AM (15 years ago)
Author:
rgrieder
Message:

Build fix (C++ doesn't allow to store temporary return values in a non-const reference).

File:
1 edited

Legend:

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

    r5836 r5838  
    201201
    202202        // Load modules
    203         std::vector<std::string>& modulePaths = this->pathConfig_->getModulePaths();
     203        const std::vector<std::string>& modulePaths = this->pathConfig_->getModulePaths();
    204204        for (std::vector<std::string>::const_iterator it = modulePaths.begin(); it != modulePaths.end(); ++it)
    205205        {
Note: See TracChangeset for help on using the changeset viewer.