@@ -619,10 +619,10 @@ impl<'tcx> LateLintPass<'tcx> for Transmute {
619
619
| transmute_ref_to_ref:: check ( cx, e, from_ty, to_ty, arg, const_context)
620
620
| transmute_ptr_to_ptr:: check ( cx, e, from_ty, to_ty, arg, & self . msrv )
621
621
| transmute_int_to_bool:: check ( cx, e, from_ty, to_ty, arg)
622
- | transmute_int_to_float:: check ( cx, e, from_ty, to_ty, arg, const_context)
622
+ | transmute_int_to_float:: check ( cx, e, from_ty, to_ty, arg, const_context, & self . msrv )
623
623
| transmute_int_to_non_zero:: check ( cx, e, from_ty, to_ty, arg)
624
- | transmute_float_to_int:: check ( cx, e, from_ty, to_ty, arg, const_context)
625
- | transmute_num_to_bytes:: check ( cx, e, from_ty, to_ty, arg, const_context)
624
+ | transmute_float_to_int:: check ( cx, e, from_ty, to_ty, arg, const_context, & self . msrv )
625
+ | transmute_num_to_bytes:: check ( cx, e, from_ty, to_ty, arg, const_context, & self . msrv )
626
626
| ( unsound_collection_transmute:: check ( cx, e, from_ty, to_ty)
627
627
|| transmute_undefined_repr:: check ( cx, e, from_ty, to_ty) )
628
628
| ( eager_transmute:: check ( cx, e, arg, from_ty, to_ty) ) ;
0 commit comments