Drop a few unused diagnostic codes#17333
Merged
bors merged 1 commit intorust-lang:masterfrom Sep 17, 2014
mo:drop_unused_diagnostic_codes
Merged
Drop a few unused diagnostic codes#17333bors merged 1 commit intorust-lang:masterfrom mo:drop_unused_diagnostic_codes
bors merged 1 commit intorust-lang:masterfrom
mo:drop_unused_diagnostic_codes
Conversation
Avoids warnings during bootstrap, similar to: src/librustc/lib.rs:149:1: 149:39 warning: diagnostic code E0099 never used src/librustc/lib.rs:149 __build_diagnostic_array!(DIAGNOSTICS) All of these codes stopped being used in this commit: 688ddf7 ("typeck/kind -- stop using old trait framework.") See also similar fix: #16449
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this pull request
Sep 17, 2014
lnicola
pushed a commit
to lnicola/rust
that referenced
this pull request
Jun 23, 2024
…et-cap, r=Veykril fix: Only generate snippets for `extract_expressions_from_format_string` if snippets are supported Part of rust-lang#17332 Fixes `extract_expressions_from_format_string` so that it doesn't generate snippets if the client doesn't support it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Avoids warnings during bootstrap, similar to:
src/librustc/lib.rs:149:1: 149:39 warning: diagnostic code E0099 never used
src/librustc/lib.rs:149 __build_diagnostic_array!(DIAGNOSTICS)
All of these codes stopped being used in this commit:
688ddf7 ("typeck/kind -- stop using old trait framework.")
See also similar fix: #16449