Changeset 18587 for trunk/FACT++/src


Ignore:
Timestamp:
09/16/16 15:06:40 (8 years ago)
Author:
tbretz
Message:
Fixed a typo and a flaw in a conditions (nothing critical)
File:
1 edited

Legend:

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

    r16091 r18587  
    529529    cout.setf(ios_base::left);
    530530
    531     // =============> Implement prining of parsed options
     531    // =============> Implement printing of parsed options
    532532    for(unsigned i=0; i<options.size(); ++i)
    533533    {
    534534        const po::basic_option<char> &opt = options[i];
    535535
    536         if (opt.value.size()==0 && !opt.string_key[0]=='-')
     536        if (opt.value.size()==0 && opt.string_key[0]!='-')
    537537            cout << "--";
    538538        cout << setw(maxlen) << opt.string_key;
Note: See TracChangeset for help on using the changeset viewer.