Skip to content

Commit 93edcc7

Browse files
rubdosogoffart
authored andcommitted
Prefix $crate for lazy_static call
1 parent 1145eef commit 93edcc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qmetaobject/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ pub use qmetaobject_impl::{QEnum6 as QEnum, QGadget6 as QGadget, QObject6 as QOb
171171
pub use lazy_static::lazy_static;
172172
#[doc(hidden)]
173173
#[macro_export]
174-
macro_rules! qmetaobject_lazy_static { ($($t:tt)*) => { lazy_static!($($t)*) } }
174+
macro_rules! qmetaobject_lazy_static { ($($t:tt)*) => { $crate::lazy_static!($($t)*) } }
175175

176176
use std::cell::{RefCell, RefMut};
177177
use std::ffi::{CStr, CString};

0 commit comments

Comments
 (0)