diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-03-26 12:34:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 12:34:25 -0400 |
commit | f46e39c5c5435696daab9df075482e6e5c83533b (patch) | |
tree | 7699e06977e1149b5d056739f981c0217a91ed5e /core/modules.rs | |
parent | 6c6f3e87c1a60bc96d006812a670212eeacd1257 (diff) |
remove macro_use (#9884)
Diffstat (limited to 'core/modules.rs')
-rw-r--r-- | core/modules.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules.rs b/core/modules.rs index b9b99d3b5..8c193bf5b 100644 --- a/core/modules.rs +++ b/core/modules.rs @@ -21,7 +21,7 @@ use std::sync::atomic::Ordering; use std::task::Context; use std::task::Poll; -lazy_static! { +lazy_static::lazy_static! { pub static ref NEXT_LOAD_ID: AtomicI32 = AtomicI32::new(0); } |