We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ca45b commit aa77231Copy full SHA for aa77231
rclrs/src/dynamic_message.rs
@@ -52,11 +52,14 @@ struct MessageTypeName {
52
/// can be used as a factory to create message instances.
53
#[derive(Clone)]
54
pub struct DynamicMessageMetadata {
55
+ #[allow(dead_code)]
56
message_type: MessageTypeName,
57
// The library needs to be kept loaded in order to keep the type_support_ptr valid.
58
#[allow(dead_code)]
59
introspection_type_support_library: Arc<libloading::Library>,
60
61
type_support_ptr: *const rosidl_message_type_support_t,
62
63
fini_function: unsafe extern "C" fn(*mut libc::c_void),
64
}
65
0 commit comments