From 7b963b81c5a1ad644f12d3994a5d5a1b894b94f4 Mon Sep 17 00:00:00 2001 From: Sam Privett Date: Sat, 28 Oct 2023 10:39:15 -0700 Subject: [PATCH] Allowed the `improper_ctypes_definitions` lint on our generated rcl bindings. --- rclrs/src/rcl_bindings.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rclrs/src/rcl_bindings.rs b/rclrs/src/rcl_bindings.rs index 17496b662..245430269 100644 --- a/rclrs/src/rcl_bindings.rs +++ b/rclrs/src/rcl_bindings.rs @@ -7,6 +7,7 @@ // Caused by https://github.com/ros2/ros2/issues/1374 in iron and newer // See https://github.com/ros2-rust/ros2_rust/issues/320 #![allow(improper_ctypes)] +#![allow(improper_ctypes_definitions)] #![allow(clippy::all)] #![allow(missing_docs)]