Skip to content

Commit fd2079b

Browse files
committed
Fix compilation bug in 1.75
Signed-off-by: Michael X. Grey <[email protected]>
1 parent f1ad6d8 commit fd2079b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rclrs/src/wait_set/waitable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::{
1414
/// used anymore.
1515
#[must_use = "If you do not give the Waiter to a WaitSet then it will never be useful"]
1616
pub struct Waitable {
17-
pub(super) primitive: Box<dyn RclPrimitive + Send + Sync>,
17+
pub(super) primitive: Box<dyn RclPrimitive>,
1818
in_use: Arc<AtomicBool>,
1919
index_in_wait_set: Option<usize>,
2020
}

0 commit comments

Comments
 (0)