-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Remove unused code from librustc_errors #43019
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
Thanks for the PR @kevinmehall, we'll check in to make sure @nikomatsakis or another reviewer gets to this soon! |
@bors r+ |
📌 Commit e863d26 has been approved by |
🔒 Merge conflict |
e863d26
to
17bd76a
Compare
@nikomatsakis Rebased |
@bors r+ |
📌 Commit 17bd76a has been approved by |
@bors rollup |
Remove unused code from librustc_errors While extracting librustc_errors into a [reusable library](https://github.com/kevinmehall/codemap-diagnostic), I noticed some obsolete code that the `dead_code` warning missed because it was marked `pub` but not used elsewhere.
☀️ Test successful - status-appveyor, status-travis |
While extracting librustc_errors into a reusable library, I noticed some obsolete code that the
dead_code
warning missed because it was markedpub
but not used elsewhere.