Changeset 11401


Ignore:
Timestamp:
07/14/11 08:59:49 (13 years ago)
Author:
tbretz
Message:
Do not output = if avlue is empty
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Main.h

    r11390 r11401  
    7171    const multimap<string,string> map = conf.GetOptions();
    7272    for (multimap<string,string>::const_iterator it=map.begin(); it!=map.end(); it++)
    73         io_service.Write(now, ": "+it->first+" = "+it->second);
     73        io_service.Write(now, ": "+it->first+(it->second.empty()?"":" = ")+it->second);
    7474    io_service.Write(now, "\\----------------------- Evaluating options ---------------------");
    7575
Note: See TracChangeset for help on using the changeset viewer.