diff options
| author | bors <bors@rust-lang.org> | 2017-10-02 07:03:26 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-10-02 07:03:26 +0000 |
| commit | 9ae6ed78acf9dc865e2300a7db556389eed9692d (patch) | |
| tree | a88473a1d7bb97b8a08866c02e68f965cad25362 /src/libsyntax | |
| parent | 2146c613d12de8dc44bc26e50af55251fc7e4f9c (diff) | |
| parent | 8a14022c5d31e1648bd1212a52a9f1a9ddbf3fa1 (diff) | |
| download | rust-9ae6ed78acf9dc865e2300a7db556389eed9692d.tar.gz rust-9ae6ed78acf9dc865e2300a7db556389eed9692d.zip | |
Auto merge of #44942 - zackmdavis:lint_suggestions, r=estebank
code suggestions for unused-mut, while-true, deprecated-attribute, and unused-parens lints  r? @estebank
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e92a7484f33..f6e85ed6725 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -824,7 +824,8 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG ("no_debug", Whitelisted, Gated( Stability::Deprecated("https://github.com/rust-lang/rust/issues/29721"), "no_debug", - "the `#[no_debug]` attribute is an experimental feature", + "the `#[no_debug]` attribute was an experimental feature that has been \ + deprecated due to lack of demand", cfg_fn!(no_debug))), ("omit_gdb_pretty_printer_section", Whitelisted, Gated(Stability::Unstable, "omit_gdb_pretty_printer_section", |
