Skip to content

Commit 101e0d7

Browse files
committed
Update reason for not using TypeId
Reflect is no longer required as of rust-lang/rust#36995.
1 parent c37bfe2 commit 101e0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/any.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::mem;
22

33
pub struct Any {
44
ptr: *mut (),
5-
// Can't get a real TypeId because we don't have Reflect bounds on the
5+
// Can't get a real TypeId because we don't have 'static bounds on the
66
// Serializer associates types, so settle for checking size_of and align_of.
77
fingerprint: Fingerprint,
88
}

0 commit comments

Comments
 (0)