mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-17 14:37:11 +01:00
add conditional compilation
This commit is contained in:
@@ -114,8 +114,15 @@ extension NSManagedObject: DynamicObject {
|
||||
}
|
||||
|
||||
public class func cs_fromRaw(object: NSManagedObject) -> Self {
|
||||
|
||||
|
||||
#if swift(>=5.9)
|
||||
return unsafeDowncast(object, to: self)
|
||||
|
||||
#else
|
||||
// unsafeDowncast fails debug assertion starting Swift 5.2
|
||||
return _unsafeUncheckedDowncast(object, to: self)
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
public static func cs_matches(object: NSManagedObject) -> Bool {
|
||||
|
||||
Reference in New Issue
Block a user