Disable use_self lint for jemalloc-ctl error mod
This commit is contained in:
parent
61f653fe6c
commit
bce67f3d2d
|
@ -1,7 +1,8 @@
|
||||||
//! Error type
|
//! Error type
|
||||||
#![cfg_attr(
|
#![allow(
|
||||||
feature = "cargo-clippy",
|
clippy::cast_sign_loss,
|
||||||
allow(clippy::cast_sign_loss, clippy::cast_possible_wrap)
|
clippy::cast_possible_wrap,
|
||||||
|
clippy::use_self // https://github.com/rust-lang/rust-clippy/issues/2843
|
||||||
)]
|
)]
|
||||||
|
|
||||||
use libc::c_int;
|
use libc::c_int;
|
||||||
|
|
Loading…
Reference in New Issue