Skip to content

Commit c36f548

Browse files
committed
Cargo fmt
1 parent 60b6fc3 commit c36f548

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hostfxr/context.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ use crate::{
1919
};
2020

2121
use std::{
22+
cell::Cell,
2223
ffi::c_void,
2324
fmt::{self, Debug},
2425
marker::PhantomData,
2526
mem::{self, ManuallyDrop, MaybeUninit},
2627
ptr::NonNull,
27-
cell::Cell
2828
};
2929

3030
#[cfg(feature = "net8_0")]
@@ -85,7 +85,7 @@ pub struct HostfxrContext<I> {
8585
is_primary: bool,
8686
runtime_delegates: EnumMap<hostfxr_delegate_type, OnceCell<RawFunctionPtr>>,
8787
context_type: PhantomData<I>,
88-
not_sync: PhantomData<Cell<HostfxrLibrary>>
88+
not_sync: PhantomData<Cell<HostfxrLibrary>>,
8989
}
9090

9191
unsafe impl<I> Send for HostfxrContext<I> {}

0 commit comments

Comments
 (0)