summary refs log tree commit diff stats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2022-10-08 10:31:34 -0300
committerSoniEx2 <endermoneymod@gmail.com>2022-10-08 10:31:34 -0300
commitba97c812bd97c9a086aea5b3ce89c87e4b0222ec (patch)
tree36c7e909ad9537fa6937d564b74c340e01f4a1b4 /src/lib.rs
parent26d91dee181d6b95b2f864407bcde00c04b7b81d (diff)
Improve errors
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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<T: ?Sized>(core::marker::PhantomData<T>);
 
 #[cfg(all(not(feature="alloc"), not(feature="nightly")))]
 #[doc(hidden)]
-pub struct UBCheck<T>(T);
+pub struct UBCheck<T>(T); // use feature "alloc" or "nightly" for T: ?Sized
 
 #[cfg(feature="nightly")]
 // SAFETY: dropck's like a Box<T>, but is no-alloc friendly.