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