Ignore:
Timestamp:
Feb 7, 2009, 10:50:34 PM (17 years ago)
Author:
cmv
Message:

char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009

File:
1 edited

Legend:

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

    r2615 r3572  
    6464      else if (ss == FitsFile::FitsDataType_char) SfitsCol.push_back(k);
    6565      else {
    66         cout << " FITS_XNTuple: colonne fits " << k << " type= " << (int) ss << endl;
     66        cout << "FITS_BntblLineReader: colonne fits " << k << " type= " << (int) ss << endl;
    6767        throw  IOExc("type de champ inconnu");
    6868      }
     
    113113
    114114
    115 FITS_BntblLineWriter::FITS_BntblLineWriter(char inputfile[],int dc, int fc,int ic, int lc, int bc, int cc,  vector<string> names,DVList* ptr_dvl,  FitsFile::WriteMode wrm)
     115FITS_BntblLineWriter::FITS_BntblLineWriter(const char inputfile[],int dc, int fc,int ic, int lc, int bc, int cc,  vector<string> names,DVList* ptr_dvl,  FitsFile::WriteMode wrm)
    116116{
    117117  int k;
    118118  int nbcols = dc+fc+ic+cc+lc+bc;
    119   if (nbcols !=  names.size())
     119  if (nbcols !=  (int)names.size())
    120120    {
    121121      cout << " WARNING: BnTblLineWriter:: length of vector of column names not equal to total number of columns" << endl;
Note: See TracChangeset for help on using the changeset viewer.