File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,15 @@ struct MessageTypeName {
52
52
/// can be used as a factory to create message instances.
53
53
#[ derive( Clone ) ]
54
54
pub struct DynamicMessageMetadata {
55
+ #[ allow( dead_code) ]
55
56
message_type : MessageTypeName ,
56
57
// The library needs to be kept loaded in order to keep the type_support_ptr valid.
57
58
#[ allow( dead_code) ]
58
59
introspection_type_support_library : Arc < libloading:: Library > ,
60
+ #[ allow( dead_code) ]
59
61
type_support_ptr : * const rosidl_message_type_support_t ,
60
- fini_function : unsafe extern "C" fn ( * mut libc:: c_void ) ,
62
+ #[ allow( dead_code) ]
63
+ fini_function : unsafe extern "C" fn ( * mut std:: os:: raw:: c_void ) ,
61
64
}
62
65
63
66
// ========================= impl for DynamicMessagePackage =========================
You can’t perform that action at this time.
0 commit comments