mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-04-23 17:18:35 +02:00
work around issue that crashes the Swift 3.2 compiler (fixes #171)
This commit is contained in:
@@ -75,12 +75,12 @@ internal extension NSEntityDescription {
|
||||
}
|
||||
}
|
||||
|
||||
internal var keyPathsByAffectedKeyPaths: [KeyPath: Set<KeyPath>] {
|
||||
internal var keyPathsByAffectedKeyPaths: [RawKeyPath: Set<RawKeyPath>] {
|
||||
|
||||
get {
|
||||
|
||||
if let userInfo = self.userInfo,
|
||||
let function = userInfo[UserInfoKey.CoreStoreManagedObjectKeyPathsByAffectedKeyPaths] as! [KeyPath: Set<KeyPath>]? {
|
||||
let function = userInfo[UserInfoKey.CoreStoreManagedObjectKeyPathsByAffectedKeyPaths] as! [RawKeyPath: Set<RawKeyPath>]? {
|
||||
|
||||
return function
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user