File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ public protocol _HasCustomAnyHashableRepresentation {
39
39
40
40
@usableFromInline // FIXME(sil-serialize-all)
41
41
internal protocol _AnyHashableBox {
42
- var _typeID : ObjectIdentifier { get }
43
42
func _unbox< T : Hashable > ( ) -> T ?
44
43
45
44
/// Determine whether values in the boxes are equivalent.
@@ -65,12 +64,6 @@ internal struct _ConcreteHashableBox<Base : Hashable> : _AnyHashableBox {
65
64
self . _baseHashable = base
66
65
}
67
66
68
-
69
- @inlinable // FIXME(sil-serialize-all)
70
- internal var _typeID : ObjectIdentifier {
71
- return ObjectIdentifier ( type ( of: self ) )
72
- }
73
-
74
67
@inlinable // FIXME(sil-serialize-all)
75
68
internal func _unbox< T : Hashable > ( ) -> T ? {
76
69
return ( self as _AnyHashableBox as? _ConcreteHashableBox < T > ) ? . _baseHashable
You can’t perform that action at this time.
0 commit comments