From 67238426ca40e8b062cca1f706935a8cdbdc4dde Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 11 Jul 2023 15:50:36 -0700 Subject: [PATCH] Change to `PhantomData>` This is akin to rust-lang/rust#66117. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 871dc41..91aef59 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,7 +110,7 @@ impl Inner { /// converted to an `Arc`. pub struct Rc { inner: NonNull>, - phantom: PhantomData, + phantom: PhantomData>, } impl Rc {