Skip to content

Commit 521f7c4

Browse files
authored
Merge pull request #191 from slavapestov/void-is-not-really-void
Fix an SE-0110 warning
2 parents 860d868 + 3e23f0d commit 521f7c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/XCTest/Public/Asynchronous/XCPredicateExpectationHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
/// returns true. If the block is not provided the first successful evaluation
1717
/// will fulfill the expectation. If provided, the handler can override that
1818
/// behavior which leaves the caller responsible for fulfilling the expectation.
19-
public typealias XCPredicateExpectationHandler = (Void) -> (Bool)
19+
public typealias XCPredicateExpectationHandler = () -> (Bool)

0 commit comments

Comments
 (0)