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