Rustfmt
This commit is contained in:
parent
af452ec6fd
commit
9b30efa7d3
|
|
@ -77,10 +77,10 @@ pub use error::{Error, Result};
|
||||||
|
|
||||||
mod msg_types;
|
mod msg_types;
|
||||||
pub use msg_types::generated_msgs::*;
|
pub use msg_types::generated_msgs::*;
|
||||||
pub use msg_types::WrappedNativeMsg as NativeMsg;
|
|
||||||
pub use msg_types::WrappedTypesupport;
|
|
||||||
pub use msg_types::WrappedServiceTypeSupport;
|
|
||||||
pub use msg_types::WrappedActionTypeSupport;
|
pub use msg_types::WrappedActionTypeSupport;
|
||||||
|
pub use msg_types::WrappedNativeMsg as NativeMsg;
|
||||||
|
pub use msg_types::WrappedServiceTypeSupport;
|
||||||
|
pub use msg_types::WrappedTypesupport;
|
||||||
|
|
||||||
mod utils;
|
mod utils;
|
||||||
pub use utils::*;
|
pub use utils::*;
|
||||||
|
|
|
||||||
|
|
@ -125,16 +125,10 @@ macro_rules! primitive_sequence {
|
||||||
primitive_sequence!(rosidl_runtime_c__float32, f32);
|
primitive_sequence!(rosidl_runtime_c__float32, f32);
|
||||||
primitive_sequence!(rosidl_runtime_c__float64, f64);
|
primitive_sequence!(rosidl_runtime_c__float64, f64);
|
||||||
|
|
||||||
#[cfg(any(
|
#[cfg(any(all(target_os = "macos", target_arch = "aarch64"), target_arch = "arm"))]
|
||||||
all(target_os = "macos", target_arch = "aarch64"),
|
|
||||||
target_arch = "arm"
|
|
||||||
))]
|
|
||||||
primitive_sequence!(rosidl_runtime_c__long_double, f64);
|
primitive_sequence!(rosidl_runtime_c__long_double, f64);
|
||||||
|
|
||||||
#[cfg(not(any(
|
#[cfg(not(any(all(target_os = "macos", target_arch = "aarch64"), target_arch = "arm")))]
|
||||||
all(target_os = "macos", target_arch = "aarch64"),
|
|
||||||
target_arch = "arm"
|
|
||||||
)))]
|
|
||||||
primitive_sequence!(rosidl_runtime_c__long_double, u128);
|
primitive_sequence!(rosidl_runtime_c__long_double, u128);
|
||||||
|
|
||||||
primitive_sequence!(rosidl_runtime_c__char, i8);
|
primitive_sequence!(rosidl_runtime_c__char, i8);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue