remove inline casts because optimized builds seem to trip on them

This commit is contained in:
John Estropia
2017-10-17 13:38:25 +09:00
parent ba6f0c39d5
commit 639574d8c2
4 changed files with 0 additions and 9 deletions

View File

@@ -152,7 +152,6 @@ extension ObjectMonitor where ObjectMonitor.ObjectType: NSManagedObject {
fileprivate func downcast() -> ObjectMonitor<NSManagedObject> {
@inline(__always)
func noWarnUnsafeBitCast<T, U>(_ x: T, to type: U.Type) -> U {
return unsafeBitCast(x, to: type)