Skip to content

Commit 94b2d5e

Browse files
cyril-marpaudkorken89
authored andcommitted
rtic-sync: don't force Signal import on make_signal!() use
1 parent daff0c2 commit 94b2d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtic-sync/src/signal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ impl<T: Copy> SignalReader<'_, T> {
161161
#[macro_export]
162162
macro_rules! make_signal {
163163
( $T:ty ) => {{
164-
static SIGNAL: Signal<$T> = Signal::new();
164+
static SIGNAL: $crate::signal::Signal<$T> = $crate::signal::Signal::new();
165165

166166
SIGNAL.split()
167167
}};

0 commit comments

Comments
 (0)