@@ -361,7 +361,7 @@ public func reflect<T>(any: T) {
361
361
anyPointer. initialize ( to: any)
362
362
let anyPointerValue = UInt ( bitPattern: anyPointer)
363
363
reflect ( instanceAddress: anyPointerValue, kind: . Existential)
364
- anyPointer. deallocate ( capacity : MemoryLayout < Any > . size )
364
+ anyPointer. deallocate ( )
365
365
}
366
366
367
367
// Reflect an `Error`, a.k.a. an "error existential".
@@ -431,7 +431,7 @@ public func reflect(function: @escaping () -> Void) {
431
431
432
432
reflect ( instanceAddress: contextPointer, kind: . Object)
433
433
434
- fn. deallocate ( capacity : MemoryLayout < ThickFunction0 > . size )
434
+ fn. deallocate ( )
435
435
}
436
436
437
437
/// Reflect a closure context. The given function must be a Swift-native
@@ -449,7 +449,7 @@ public func reflect(function: @escaping (Int) -> Void) {
449
449
450
450
reflect ( instanceAddress: contextPointer, kind: . Object)
451
451
452
- fn. deallocate ( capacity : MemoryLayout < ThickFunction1 > . size )
452
+ fn. deallocate ( )
453
453
}
454
454
455
455
/// Reflect a closure context. The given function must be a Swift-native
@@ -466,7 +466,7 @@ public func reflect(function: @escaping (Int, String) -> Void) {
466
466
467
467
reflect ( instanceAddress: contextPointer, kind: . Object)
468
468
469
- fn. deallocate ( capacity : MemoryLayout < ThickFunction2 > . size )
469
+ fn. deallocate ( )
470
470
}
471
471
472
472
/// Reflect a closure context. The given function must be a Swift-native
@@ -483,7 +483,7 @@ public func reflect(function: @escaping (Int, String, AnyObject?) -> Void) {
483
483
484
484
reflect ( instanceAddress: contextPointer, kind: . Object)
485
485
486
- fn. deallocate ( capacity : MemoryLayout < ThickFunction3 > . size )
486
+ fn. deallocate ( )
487
487
}
488
488
489
489
/// Call this function to indicate to the parent that there are
0 commit comments