Merge pr-#34
This commit is contained in:
commit
123c670e03
|
|
@ -125,10 +125,16 @@ macro_rules! primitive_sequence {
|
|||
primitive_sequence!(rosidl_runtime_c__float32, f32);
|
||||
primitive_sequence!(rosidl_runtime_c__float64, f64);
|
||||
|
||||
#[cfg(all(target_os = "macos", target_arch = "aarch64"))]
|
||||
#[cfg(any(
|
||||
all(target_os = "macos", target_arch = "aarch64"),
|
||||
target_arch = "arm"
|
||||
))]
|
||||
primitive_sequence!(rosidl_runtime_c__long_double, f64);
|
||||
|
||||
#[cfg(not(all(target_os = "macos", target_arch = "aarch64")))]
|
||||
#[cfg(not(any(
|
||||
all(target_os = "macos", target_arch = "aarch64"),
|
||||
target_arch = "arm"
|
||||
)))]
|
||||
primitive_sequence!(rosidl_runtime_c__long_double, u128);
|
||||
|
||||
primitive_sequence!(rosidl_runtime_c__char, i8);
|
||||
|
|
|
|||
Loading…
Reference in New Issue