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
Closes#5487, #1913, and #4568
I tracked this by adding all used unsafe blocks/functions to a set on the `tcx` passed around, and then when the lint pass comes around if an unsafe block/function isn't listed in that set, it's unused.
I also removed everything from the compiler that was unused, and up to stage2 is now compiling without any known unused unsafe blocks.
I chose `unused_unsafe` as the name of the lint attribute, but there may be a better name...
Check when `from_utf8` is called from sliced byte array from string
---
*Please keep the line below*
changelog: Fixrust-lang#5487: Add linter to check when `from_utf8` is called from sliced byte array from string.
When
pure
is gone (#5384), the libraries should be reviewed for uses ofunsafe
that were only there for purity reasons. #1913 might make this easier.One instance I just came across is in
core::vec::map
.The text was updated successfully, but these errors were encountered: