From ba97c812bd97c9a086aea5b3ce89c87e4b0222ec Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 8 Oct 2022 10:31:34 -0300 Subject: Improve errors --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 61b930a..a8f7b7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selfref" -version = "0.2.3" +version = "0.2.4" authors = ["SoniEx2 "] edition = "2021" description = "Semi-pain-free self-referential pinned types" diff --git a/src/lib.rs b/src/lib.rs index b6e28fd..b8a4f86 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -232,7 +232,7 @@ pub struct UBCheck(core::marker::PhantomData); #[cfg(all(not(feature="alloc"), not(feature="nightly")))] #[doc(hidden)] -pub struct UBCheck(T); +pub struct UBCheck(T); // use feature "alloc" or "nightly" for T: ?Sized #[cfg(feature="nightly")] // SAFETY: dropck's like a Box, but is no-alloc friendly. -- cgit 1.4.1