You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
under strict provenance it is considered bad style to cast pointer `{$expr_ty}` to integer `{$cast_ty}`
93
-
.suggestion = use `.addr()` to obtain the address of a pointer
94
-
.help = if you can't comply with strict provenance and need to expose the pointer provenance you can use `.expose_addr()` instead
93
+
.suggestion = use `.addr_without_provenance()` to obtain the address of a pointer without its provenance -- but note that this cannot be cast back to a pointer later; you need to use `with_addr` instead
94
+
.help = if you need to cast the address back to an integer later, use `.expose_addr()` instead
95
95
96
96
hir_typeck_method_call_on_unknown_raw_pointee =
97
97
cannot call a method on a raw pointer with an unknown pointee type
0 commit comments