diff options
| author | est31 <MTest31@outlook.com> | 2020-10-18 17:28:00 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2020-10-18 17:30:15 +0200 |
| commit | b87e4f36e70862a9506109cc29528e490a5d22da (patch) | |
| tree | c0d78ba3d142834ef0881fb7fff5718680a4e5fb /compiler/rustc_parse/src | |
| parent | a687420d1766b01583858ec2dee30fd57acead41 (diff) | |
| download | rust-b87e4f36e70862a9506109cc29528e490a5d22da.tar.gz rust-b87e4f36e70862a9506109cc29528e490a5d22da.zip | |
Remove redundant 'static in the compiler
Diffstat (limited to 'compiler/rustc_parse/src')
| -rw-r--r-- | compiler/rustc_parse/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs index 25deb46e147..9a187c6285e 100644 --- a/compiler/rustc_parse/src/lib.rs +++ b/compiler/rustc_parse/src/lib.rs @@ -22,7 +22,7 @@ use std::str; use tracing::{debug, info}; -pub const MACRO_ARGUMENTS: Option<&'static str> = Some("macro arguments"); +pub const MACRO_ARGUMENTS: Option<&str> = Some("macro arguments"); #[macro_use] pub mod parser; |
