Auto merge of #13329 - ehuss:fix-static_mut_ref, r=weihanglo

Fix static_mut_ref warning.

The nightly compiler has recently added the [`static_mut_ref`](https://doc.rust-lang.org/nightly/rustc/lints/listing/warn-by-default.html#static-mut-ref) lint, which warns about taking a reference to a `mut static`. This fixes the issue by copying the value instead of taking a reference. I don't recall what I was thinking when I wrote this, but it was probably a bad reflex against making copies.
This commit is contained in:
bors 2024-01-19 23:34:37 +00:00
commit 07021393fa

View file

@ -187,7 +187,7 @@ fn to_token_stream(code: &str) -> TokenStream {
static mut VERSION: (u32, bool) = (0, false);
fn version() -> &'static (u32, bool) {
fn version() -> (u32, bool) {
static INIT: Once = Once::new();
INIT.call_once(|| {
let output = Command::new("rustc")
@ -201,7 +201,7 @@ fn version() -> &'static (u32, bool) {
let minor = vers.split('.').skip(1).next().unwrap().parse().unwrap();
unsafe { VERSION = (minor, is_nightly) }
});
unsafe { &VERSION }
unsafe { VERSION }
}
fn has_command(command: &str) -> bool {