Temporary allow deref_nullptr in tests

As a workaround to https://github.com/rust-lang/rust-bindgen/issues/2066
This commit is contained in:
gwenn 2021-06-28 19:04:27 +02:00
parent a596482ab1
commit c670b6d653

View File

@ -1,4 +1,5 @@
#![allow(non_snake_case, non_camel_case_types)]
#![cfg_attr(test, allow(deref_nullptr))] // https://github.com/rust-lang/rust-bindgen/issues/2066
pub use self::error::*;