File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,13 +78,13 @@ define uninitialized `static mut` values.
78
78
#[ macro_export]
79
79
macro_rules! lazy_static {
80
80
( static ref $N: ident : $T: ty = $e: expr; $( $t: tt) * ) => {
81
- lazy_static!( PRIV static ref $N : $T = $e; $( $t) * )
81
+ lazy_static!( PRIV static ref $N : $T = $e; $( $t) * ) ;
82
82
} ;
83
83
( pub static ref $N: ident : $T: ty = $e: expr; $( $t: tt) * ) => {
84
- lazy_static!( PUB static ref $N : $T = $e; $( $t) * )
84
+ lazy_static!( PUB static ref $N : $T = $e; $( $t) * ) ;
85
85
} ;
86
86
( $VIS: ident static ref $N: ident : $T: ty = $e: expr; $( $t: tt) * ) => {
87
- lazy_static!( MAKE TY $VIS $N)
87
+ lazy_static!( MAKE TY $VIS $N) ;
88
88
impl Deref <$T> for $N {
89
89
fn deref<' a>( & ' a self ) -> & ' a $T {
90
90
use std:: sync:: { Once , ONCE_INIT } ;
@@ -105,7 +105,7 @@ macro_rules! lazy_static {
105
105
}
106
106
}
107
107
}
108
- lazy_static!( $( $t) * )
108
+ lazy_static!( $( $t) * ) ;
109
109
} ;
110
110
( MAKE TY PUB $N: ident) => {
111
111
#[ allow( non_camel_case_types) ]
You can’t perform that action at this time.
0 commit comments