Skip to content

Commit 23990bf

Browse files
committed
[noescape by default] Add explicit @escaping as needed
1 parent 2f8155d commit 23990bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/SDK/CryptoTokenKit/CryptoTokenKit.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Foundation
1717
@available(OSX 10.10, *)
1818
extension TKSmartCard {
1919
public func send(ins: UInt8, p1: UInt8, p2: UInt8, data: Data? = nil,
20-
le: Int? = nil, reply: (Data?, UInt16, Error?) -> Void) {
20+
le: Int? = nil, reply: @escaping (Data?, UInt16, Error?) -> Void) {
2121

2222
self.__sendIns(ins, p1: p1, p2: p2, data: data,
2323
le: le.map { NSNumber(value: $0) }, reply: reply)

0 commit comments

Comments
 (0)