Skip to content

Commit 7dd2317

Browse files
committed
Suppress deref_nullptr warnings
Signed-off-by: Ionut Mihalcea <[email protected]>
1 parent 3fc1125 commit 7dd2317

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tss-esapi-sys/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
clippy::all,
1212
unused
1313
)]
14+
// Suppress warnings from bindgen-generated code
15+
// Remove on resolution of
16+
// https://github.com/rust-lang/rust-bindgen/issues/1651
17+
#![allow(deref_nullptr)]
1418
///! This crate provides a basic interface for accessing the TSS Enhanced
1519
///! System API from Rust. No abstraction is provided beyond what is
1620
///! automatically generated by `bindgen` - the `tss-esapi` crate is the

0 commit comments

Comments
 (0)