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.
7878#[ macro_export]
7979macro_rules! lazy_static {
8080 ( 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) * ) ;
8282 } ;
8383 ( 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) * ) ;
8585 } ;
8686 ( $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) ;
8888 impl Deref <$T> for $N {
8989 fn deref<' a>( & ' a self ) -> & ' a $T {
9090 use std:: sync:: { Once , ONCE_INIT } ;
@@ -105,7 +105,7 @@ macro_rules! lazy_static {
105105 }
106106 }
107107 }
108- lazy_static!( $( $t) * )
108+ lazy_static!( $( $t) * ) ;
109109 } ;
110110 ( MAKE TY PUB $N: ident) => {
111111 #[ allow( non_camel_case_types) ]
You can’t perform that action at this time.
0 commit comments