Skip to content

Commit c11d46f

Browse files
author
Matthew Giordano
committed
Add fmt::Debug to sync::Weak<T, A>
1 parent 1f12b9b commit c11d46f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/sync.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl<T: ?Sized + Unsize<U>, U: ?Sized, A: Allocator> CoerceUnsized<Weak<U, A>> f
335335
impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Weak<U>> for Weak<T> {}
336336

337337
#[stable(feature = "arc_weak", since = "1.4.0")]
338-
impl<T: ?Sized> fmt::Debug for Weak<T> {
338+
impl<T: ?Sized, A: Allocator> fmt::Debug for Weak<T, A> {
339339
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
340340
write!(f, "(Weak)")
341341
}

0 commit comments

Comments
 (0)