mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 22:05:37 +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_export]
|
||||||
macro_rules! make_signal {
|
macro_rules! make_signal {
|
||||||
( $T:ty ) => {{
|
( $T:ty ) => {{
|
||||||
static SIGNAL: Signal<$T> = Signal::new();
|
static SIGNAL: $crate::signal::Signal<$T> = $crate::signal::Signal::new();
|
||||||
|
|
||||||
SIGNAL.split()
|
SIGNAL.split()
|
||||||
}};
|
}};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue