Changeset 18049 for trunk/Mars/mcore
- Timestamp:
- 01/03/15 16:43:25 (10 years ago)
- Location:
- trunk/Mars/mcore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/FITS.h
r17776 r18049 119 119 120 120 TileHeader(uint32_t nRows, 121 uint64_t s) : id ({'T', 'I', 'L', 'E'}),121 uint64_t s) : id{'T', 'I', 'L', 'E'}, 122 122 numRows(nRows), 123 123 size(s) -
trunk/Mars/mcore/checksum.h
r17282 r18049 165 165 const uint8_t remainder = byte % 4; 166 166 167 uint32_t ch[4] = { quotient+remainder, quotient, quotient, quotient };167 uint32_t ch[4] = { uint32_t(quotient+remainder), quotient, quotient, quotient }; 168 168 169 169 // avoid ASCII punctuation -
trunk/Mars/mcore/fits.h
r17911 r18049 331 331 } 332 332 333 const Table::Column col = { bytes, n, size, n*size, type, unit, compress};333 const Table::Column col = { bytes, size_t(n), size, n*size, type, unit, compress}; 334 334 335 335 cols[id] = col;
Note:
See TracChangeset
for help on using the changeset viewer.