We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aef926 commit 80bb0acCopy full SHA for 80bb0ac
rclrs/src/rcl_bindings.rs
@@ -3,7 +3,12 @@
3
#![allow(non_upper_case_globals)]
4
#![allow(non_camel_case_types)]
5
#![allow(non_snake_case)]
6
+
7
+// Added to avoid clippy complaining about u128 types not being FFI safe
8
+// Caused by https://github.com/ros2/ros2/issues/1374 in iron and newer
9
+// See https://github.com/ros2-rust/ros2_rust/issues/320
10
#![allow(improper_ctypes)]
11
12
#![allow(clippy::all)]
13
#![allow(missing_docs)]
14
0 commit comments