Skip to content

Commit 1fa1513

Browse files
committed
Merge pull request swiftlang#70 from dgrove-oss/fix-overlay-for-20160412a-master
change prototype of functions returning nil to use ImplictlyUnwrapped…
2 parents 6ead519 + 8484180 commit 1fa1513

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/swift/Dispatch.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ public var DISPATCH_IO_STRICT_INTERVAL: dispatch_io_interval_flags_t {
4141
return 1
4242
}
4343

44-
public var DISPATCH_QUEUE_SERIAL: dispatch_queue_attr_t {
44+
public var DISPATCH_QUEUE_SERIAL: dispatch_queue_attr_t! {
4545
return nil
4646
}
47-
public var DISPATCH_CURRENT_QUEUE_LABEL: dispatch_queue_t {
47+
public var DISPATCH_CURRENT_QUEUE_LABEL: dispatch_queue_t! {
4848
return nil
4949
}
50-
public var DISPATCH_TARGET_QUEUE_DEFAULT: dispatch_queue_t {
50+
public var DISPATCH_TARGET_QUEUE_DEFAULT: dispatch_queue_t! {
5151
return nil
5252
}
5353
public var DISPATCH_QUEUE_PRIORITY_HIGH: dispatch_queue_priority_t {

0 commit comments

Comments
 (0)