Changeset 19026


Ignore:
Timestamp:
06/23/18 14:19:32 (6 years ago)
Author:
tbretz
Message:
Cleaned some comments.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Configuration.cc

    r18997 r19026  
    12611261const po::variables_map &Configuration::ParseFile(const string &fname, const bool &checkf)
    12621262{
    1263     // ------------------------ (0) --------------------------
     1263    // -------------------------------------------------------
    12641264    po::options_description opt_configfile;
    12651265
     
    12671267        opt_configfile.add(fOptionsConfigfile[i]);
    12681268
    1269     // ------------------------ (1) --------------------------
    1270 
    1271     po::variables_map getfiles;
    1272 
    1273     // ------------------------ (1) --------------------------
     1269    // -------------------------------------------------------
    12741270
    12751271    ifstream file(fname.c_str());
     
    12781274        po::parse_config_file<char>(file, opt_configfile, !checkf);
    12791275
    1280     // ------------------------ (6) --------------------------
    1281     po::store(parsed_file, getfiles);
    1282 
    1283     // ------------------------ (13) -------------------------
     1276    // -------------------------------------------------------
    12841277
    12851278    po::variables_map result;
     
    12891282    fVariables = result;
    12901283
    1291     // ------------------------ (14) -------------------------
     1284    // -------------------------------------------------------
    12921285
    12931286    const vector<string> unknown = collect_unrecognized(parsed_file.options, po::exclude_positional);
     
    12961289    fUnknownConfigfile.insert(fUnknownConfigfile.end(), unknown.begin(), unknown.end());
    12971290
    1298     // ------------------------ (15) -------------------------
     1291    // -------------------------------------------------------
    12991292
    13001293    CreateWildcardOptions();
    13011294
    1302     // ------------------------ (16) -------------------------
     1295    // -------------------------------------------------------
    13031296
    13041297    return fVariables;
Note: See TracChangeset for help on using the changeset viewer.