mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
rtic-sync: don't force Signal import on make_signal!() use
This commit is contained in:
parent
daff0c2913
commit
94b2d5e9c0
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ impl<T: Copy> SignalReader<'_, T> {
|
|||
#[macro_export]
|
||||
macro_rules! make_signal {
|
||||
( $T:ty ) => {{
|
||||
static SIGNAL: Signal<$T> = Signal::new();
|
||||
static SIGNAL: $crate::signal::Signal<$T> = $crate::signal::Signal::new();
|
||||
|
||||
SIGNAL.split()
|
||||
}};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue