Skip to content

Commit cddb4e4

Browse files
hyykingcramertj
authored andcommitted
chore(lib): core lib reexport
1 parent d5424b6 commit cddb4e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/projection.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ macro_rules! unsafe_pinned {
4141
($f:tt: $t:ty) => (
4242
#[allow(unsafe_code)]
4343
fn $f<'__a>(
44-
self: ::core::pin::Pin<&'__a mut Self>
45-
) -> ::core::pin::Pin<&'__a mut $t> {
44+
self: $crate::core_reexport::pin::Pin<&'__a mut Self>
45+
) -> $crate::core_reexport::pin::Pin<&'__a mut $t> {
4646
unsafe {
47-
::core::pin::Pin::map_unchecked_mut(
47+
$crate::core_reexport::pin::Pin::map_unchecked_mut(
4848
self, |x| &mut x.$f
4949
)
5050
}

0 commit comments

Comments
 (0)