File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ macro_rules! mk_static {
4141 ( $t: ty, $val: expr) => { {
4242 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
4343 #[ deny( unused_attributes) ]
44- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
44+ let x = STATIC_CELL . uninit( ) . write( $val) ;
4545 x
4646 } } ;
4747}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ macro_rules! mk_static {
3636 ( $t: ty, $val: expr) => { {
3737 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
3838 #[ deny( unused_attributes) ]
39- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
39+ let x = STATIC_CELL . uninit( ) . write( $val) ;
4040 x
4141 } } ;
4242}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ macro_rules! mk_static {
4141 ( $t: ty, $val: expr) => { {
4242 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
4343 #[ deny( unused_attributes) ]
44- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
44+ let x = STATIC_CELL . uninit( ) . write( $val) ;
4545 x
4646 } } ;
4747}
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ macro_rules! mk_static {
5050 ( $t: ty, $val: expr) => { {
5151 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
5252 #[ deny( unused_attributes) ]
53- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
53+ let x = STATIC_CELL . uninit( ) . write( $val) ;
5454 x
5555 } } ;
5656}
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ macro_rules! mk_static {
4343 ( $t: ty, $val: expr) => { {
4444 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
4545 #[ deny( unused_attributes) ]
46- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
46+ let x = STATIC_CELL . uninit( ) . write( $val) ;
4747 x
4848 } } ;
4949}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ macro_rules! mk_static {
4747 ( $t: ty, $val: expr) => { {
4848 static STATIC_CELL : static_cell:: StaticCell <$t> = static_cell:: StaticCell :: new( ) ;
4949 #[ deny( unused_attributes) ]
50- let x = STATIC_CELL . uninit( ) . write( ( $val) ) ;
50+ let x = STATIC_CELL . uninit( ) . write( $val) ;
5151 x
5252 } } ;
5353}
You can’t perform that action at this time.
0 commit comments