1
Fork 0

yeet upcast_trait_def_id from ImplSourceObjectData

This commit is contained in:
Michael Goulet 2023-06-20 21:48:05 +00:00
parent 42571c4847
commit 7d0a5c31f5
4 changed files with 4 additions and 12 deletions

View file

@ -46,8 +46,8 @@ impl<N: fmt::Debug> fmt::Debug for traits::ImplSourceObjectData<N> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"ImplSourceObjectData(upcast={:?}, vtable_base={}, nested={:?})",
self.upcast_trait_def_id, self.vtable_base, self.nested
"ImplSourceObjectData(vtable_base={}, nested={:?})",
self.vtable_base, self.nested
)
}
}