Ignore:
Timestamp:
Dec 7, 2000, 5:18:43 PM (25 years ago)
Author:
yvon
Message:

les enums dans les flots cout sont castes en (int)

dominique

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsfile.cc

    r1334 r1351  
    510510    else
    511511      {
    512         cout << " hdutype= " << hdutype_ << endl;
     512        cout << " hdutype= " << (int) hdutype_ << endl;
    513513        throw PException("FitsFile::NbColsFromFits, HDU  not supported");
    514514      }
     
    528528      else
    529529        {
    530           cout << "hdutype= " << hdutype_ << endl;
     530          cout << "hdutype= " << (int) hdutype_ << endl;
    531531          throw PException("FitsFile::NentriesFromFits, this HDU is not supported");
    532532        }
     
    880880    else
    881881      {
    882       cout << " hdutype= " << hdutype_ << endl;
     882      cout << " hdutype= " << (int) hdutype_ << endl;
    883883      throw IOExc("FitsFile::GetSingleColumn, this HDU is unknown");
    884884      }
     
    913913    else
    914914      {
    915       cout << " hdutype= " << hdutype_ << endl;
     915      cout << " hdutype= " << (int) hdutype_ << endl;
    916916      throw IOExc("FitsFile::GetSingleColumn this HDU is unknown");
    917917      }
     
    946946    else
    947947      {
    948       cout << " hdutype= " << hdutype_ << endl;
     948      cout << " hdutype= " << (int) hdutype_ << endl;
    949949      throw IOExc("FitsFile::GetSingleColumn this HDU is unknown");
    950950      }
Note: See TracChangeset for help on using the changeset viewer.