@@ -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 {
@@ -434,14 +428,8 @@ macro_rules! writes_col_impl {
434
428
writes_col_impl ! ( u8 , DataType :: TBYTE ) ;
435
429
writes_col_impl ! ( i8 , DataType :: TSBYTE ) ;
436
430
writes_col_impl ! ( u32 , DataType :: TUINT ) ;
437
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
438
- writes_col_impl ! ( u64 , DataType :: TULONG ) ;
439
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
440
- writes_col_impl ! ( u64 , DataType :: TLONGLONG ) ;
441
431
writes_col_impl ! ( i32 , DataType :: TINT ) ;
442
- #[ cfg( all( target_pointer_width = "64" , not( target_os = "windows" ) ) ) ]
443
- writes_col_impl ! ( i64 , DataType :: TLONG ) ;
444
- #[ cfg( any( target_pointer_width = "32" , target_os = "windows" ) ) ]
432
+ writes_col_impl ! ( u64 , DataType :: TULONGLONG ) ;
445
433
writes_col_impl ! ( i64 , DataType :: TLONGLONG ) ;
446
434
writes_col_impl ! ( f32 , DataType :: TFLOAT ) ;
447
435
writes_col_impl ! ( f64 , DataType :: TDOUBLE ) ;
0 commit comments