Ignore:
Timestamp:
11/25/15 12:55:08 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Make NRO reader classes warning free.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/external-alma/atnf/PKSIO/NROFITSDataset.h

    r2812 r3066  
    101101  struct FieldProperty {
    102102    //string name;    // field name
    103     int size;         // data size [byte]
     103    size_t size;      // data size [byte]
    104104    //string unit;    // unit of the field
    105     long offset;      // offset from the head of scan record [byte]
     105    size_t offset;    // offset from the head of scan record [byte]
    106106  };
    107107
     
    111111  // Read char data
    112112  int readHeader( string &v, const char *name ) ;
    113   int readTable( char *v, const char *name, int clen, int idx=0 ) ;
     113  int readTable( char *v, const char *name, size_t clen, int idx=0 ) ;
    114114  int readTable( vector<char *> &v, const char *name, int idx=0 ) ;
    115115  int readColumn( vector<string> &v, const char *name, int idx=0 ) ;
Note: See TracChangeset for help on using the changeset viewer.