We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffb3db commit d7ced65Copy full SHA for d7ced65
1 file changed
src/hyperlight_libc/src/lib.rs
@@ -21,15 +21,16 @@ limitations under the License.
21
//! C library types and functions.
22
23
#![no_std]
24
-#![allow(non_upper_case_globals)]
25
-#![allow(non_camel_case_types)]
26
-#![allow(non_snake_case)]
27
-#![allow(dead_code)]
28
-#![allow(clippy::missing_safety_doc)]
29
#![allow(clippy::approx_constant)]
30
-#![allow(clippy::useless_transmute)]
+#![allow(clippy::missing_safety_doc)]
31
#![allow(clippy::unnecessary_cast)]
+#![allow(clippy::useless_transmute)]
+#![allow(dead_code)]
32
#![allow(improper_ctypes)]
+#![allow(non_camel_case_types)]
+#![allow(non_snake_case)]
+#![allow(non_upper_case_globals)]
33
+#![allow(unpredictable_function_pointer_comparisons)]
34
35
// Include the generated bindings
36
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
0 commit comments