Changeset 10496 for trunk/FACT++/src/Console.cc
- Timestamp:
- 04/29/11 13:06:49 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Console.cc
r10429 r10496 133 133 { 134 134 const string siz = fLogO.GetSizeStr(); 135 return fContinous ? 136 Tools::Form("[%d]", GetLine()) : 137 Tools::Form("[%d:%s]", GetLine(), siz.c_str()); 135 136 string rc = "["; 137 rc += GetLine(); 138 return fContinous ? rc+']' : rc+':'+siz+']'; 138 139 } 139 140
Note:
See TracChangeset
for help on using the changeset viewer.