@@ -270,13 +270,7 @@ reads_col_impl!(i32, fits_read_col_int, 0);
270
270
reads_col_impl ! ( u32 , fits_read_col_uint, 0 ) ;
271
271
reads_col_impl ! ( f32 , fits_read_col_flt, 0.0 ) ;
272
272
reads_col_impl ! ( f64 , fits_read_col_dbl, 0.0 ) ;
273
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
274
- reads_col_impl ! ( i64 , fits_read_col_lng, 0 ) ;
275
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
276
273
reads_col_impl ! ( i64 , fits_read_col_lnglng, 0 ) ;
277
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
278
- reads_col_impl ! ( u64 , fits_read_col_ulng, 0 ) ;
279
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
280
274
reads_col_impl ! ( u64 , fits_read_col_ulnglng, 0 ) ;
281
275
282
276
impl ReadsCol for String {
@@ -436,14 +430,8 @@ writes_col_impl!(i8, DataType::TSBYTE);
436
430
writes_col_impl ! ( u16 , DataType :: TUSHORT ) ;
437
431
writes_col_impl ! ( i16 , DataType :: TSHORT ) ;
438
432
writes_col_impl ! ( u32 , DataType :: TUINT ) ;
439
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
440
- writes_col_impl ! ( u64 , DataType :: TULONG ) ;
441
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
442
- writes_col_impl ! ( u64 , DataType :: TLONGLONG ) ;
443
433
writes_col_impl ! ( i32 , DataType :: TINT ) ;
444
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
445
- writes_col_impl ! ( i64 , DataType :: TLONG ) ;
446
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
434
+ writes_col_impl ! ( u64 , DataType :: TULONGLONG ) ;
447
435
writes_col_impl ! ( i64 , DataType :: TLONGLONG ) ;
448
436
writes_col_impl ! ( f32 , DataType :: TFLOAT ) ;
449
437
writes_col_impl ! ( f64 , DataType :: TDOUBLE ) ;
0 commit comments