9 lines
155 B
Swift
9 lines
155 B
Swift
import Foundation
|
|
|
|
#if os(Linux)
|
|
@discardableResult
|
|
func autoreleasepool<Result>(_ work: () throws -> Result) rethrows -> Result {
|
|
try work()
|
|
}
|
|
#endif
|