diff options
| author | Corey Farwell <coreyf@rwell.org> | 2018-08-29 08:21:01 -0500 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2018-08-29 09:01:35 -0500 |
| commit | e477a13d63c2139f39c192c8e22dcfd0810f68e4 (patch) | |
| tree | c5ed734f6ed887a5348070b7666db6ac13468e2c /src/libtest | |
| parent | ca0de63898b525656ad8447cd81ccb08a05e3d6c (diff) | |
| download | rust-e477a13d63c2139f39c192c8e22dcfd0810f68e4.tar.gz rust-e477a13d63c2139f39c192c8e22dcfd0810f68e4.zip | |
Replace usages of 'bad_style' with 'nonstandard_style'.
`bad_style` is being deprecated in favor of `nonstandard_style`: - https://github.com/rust-lang/rust/issues/41646
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 29d7cfd2a3a..d993c6244fc 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -1184,7 +1184,7 @@ fn get_concurrency() -> usize { }; #[cfg(windows)] - #[allow(bad_style)] + #[allow(nonstandard_style)] fn num_cpus() -> usize { #[repr(C)] struct SYSTEM_INFO { |
