- Timestamp:
- 09/28/11 14:44:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fitsdump.cc
r12149 r12150 451 451 const MyColumn *col = static_cast<MyColumn*>(ic->second); 452 452 453 cout << " " << col->name() << "[" << col->width() << "] * " << col->scale() << " (" << col->unit() << ":" << ValueTypeToStr(col->type())<< ") " << col->comment() << "\n"; 453 cout << " " << col->name() << "[" ; 454 if (col->width() == 0) 455 cout << 1; 456 else 457 cout << col->width(); 458 cout << "] * " << col->scale() << " (" << col->unit() << ":" << ValueTypeToStr(col->type())<< ") " << col->comment() << "\n"; 454 459 /* 455 460 inline size_t Column::repeat () const
Note:
See TracChangeset
for help on using the changeset viewer.