Changeset 19174


Ignore:
Timestamp:
08/18/18 17:41:12 (6 years ago)
Author:
tbretz
Message:
Now compiles at ISDC:
File:
1 edited

Legend:

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

    r18977 r19174  
    137137    cout << " [" << GetNumRows() << "]\n";
    138138
    139     for (const auto &it : fColMap)
    140     {
    141         cout << " " << setw(3)  << it.second.id;
    142         cout << "|" << setw(10) << ValueTypeToStr(it.second.type);
    143         cout << " " << it.first << "[" << it.second.num << "]";
    144         cout << " / " << it.second.comment;
    145         cout << " (" << it.second.unit << ")" << endl;
     139    for (auto it=fColMap.cbegin(); it!=fColMap.cend(); it++)
     140    {
     141        cout << " " << setw(3)  << it->second.id;
     142        cout << "|" << setw(10) << ValueTypeToStr(it->second.type);
     143        cout << " " << it->first << "[" << it->second.num << "]";
     144        cout << " / " << it->second.comment;
     145        cout << " (" << it->second.unit << ")" << endl;
    146146    }
    147147
Note: See TracChangeset for help on using the changeset viewer.