1
Fork 0

Rollup merge of #53786 - frewsxcv:frewsxcv-bad-style, r=Manishearth

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
This commit is contained in:
Pietro Albini 2018-08-30 20:15:47 +02:00 committed by GitHub
commit 78d5509625
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 52 additions and 52 deletions

View file

@ -22,7 +22,7 @@
use std::any::Any;
#[cfg(windows)]
#[allow(bad_style)]
#[allow(nonstandard_style)]
pub fn acquire_global_lock(name: &str) -> Box<dyn Any> {
use std::ffi::CString;
use std::io;