Skip to content

Commit 7951345

Browse files
committed
Fix clippy lints applying to binaryninjacore-sys
This should _hopefully_ fix clippy checking the output of bindgen.
1 parent c006a82 commit 7951345

File tree

1 file changed

+1
-1
lines changed
  • rust/binaryninjacore-sys/src

1 file changed

+1
-1
lines changed

rust/binaryninjacore-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![allow(non_camel_case_types)]
33
#![allow(non_snake_case)]
44
#![allow(unused)]
5-
#![allow(clippy::type_complexity)]
5+
#![allow(clippy::all)]
66
#![doc(html_root_url = "https://dev-rust.binary.ninja/")]
77

88
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

0 commit comments

Comments
 (0)