Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 30, 2009, 12:13:01 AM (15 years ago)
Author:
rgrieder
Message:

Removed two unnecessary boost/filesystem.hpp includes.

File:
1 edited

Legend:

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

    r5836 r5837  
    3131#include <algorithm>
    3232#include <sstream>
    33 #include <boost/filesystem.hpp>
    3433
    3534#include "util/Convert.h"
     
    348347    {
    349348        std::string filename = CommandLine::getValue("optionsFile").getString();
    350         boost::filesystem::path filepath(PathConfig::getConfigPath() / filename);
    351349
    352350        // look for additional arguments in given file or start.ini as default
    353351        // They will not overwrite the arguments given directly
    354352        std::ifstream file;
    355         file.open(filepath.string().c_str());
     353        file.open((PathConfig::getConfigPathString() + filename).c_str());
    356354        std::vector<std::string> args;
    357355        if (file)
Note: See TracChangeset for help on using the changeset viewer.