Skip to content

Commit 9f58194

Browse files
committed
Merge branch 'worker' into worker_with_timers
2 parents e8f037f + f1ad6d8 commit 9f58194

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rclrs/src/service/service_info.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@ impl ServiceInfo {
4646
#[derive(Debug, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
4747
pub struct RequestId {
4848
/// A globally unique identifier for the writer of the request.
49+
#[cfg(ros_distro = "humble")]
50+
pub writer_guid: [i8; 16usize],
51+
52+
/// A globally unique identifier for the writer of the request.
53+
#[cfg(not(ros_distro = "humble"))]
4954
pub writer_guid: [u8; 16usize],
55+
5056
/// A number assigned to the request which is unique for the writer who
5157
/// wrote the request.
5258
pub sequence_number: i64,

0 commit comments

Comments
 (0)