File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public class AnyKeyPath: Hashable, _AppendKeyPath {
77
77
}
78
78
}
79
79
80
- public static func == ( a: AnyKeyPath , b: AnyKeyPath ) -> Bool {
80
+ public static func == ( a: AnyKeyPath , b: AnyKeyPath ) -> Bool {
81
81
// Fast-path identical objects
82
82
if a === b {
83
83
return true
@@ -439,7 +439,7 @@ internal struct ComputedPropertyID: Hashable {
439
439
internal var value : Int
440
440
internal var kind : KeyPathComputedIDKind
441
441
442
- internal static func == (
442
+ internal static func == (
443
443
x: ComputedPropertyID , y: ComputedPropertyID
444
444
) -> Bool {
445
445
return x. value == y. value
@@ -654,7 +654,7 @@ internal enum KeyPathComponent: Hashable {
654
654
/// The keypath wraps a value in an optional.
655
655
case optionalWrap
656
656
657
- internal static func == ( a: KeyPathComponent , b: KeyPathComponent ) -> Bool {
657
+ internal static func == ( a: KeyPathComponent , b: KeyPathComponent ) -> Bool {
658
658
switch ( a, b) {
659
659
case ( . struct( offset: let a) , . struct( offset: let b) ) ,
660
660
( . class ( offset: let a) , . class ( offset: let b) ) :
You can’t perform that action at this time.
0 commit comments