Skip to content

Commit 1a31fba

Browse files
committed
Additional merge fixes
1 parent e822f94 commit 1a31fba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/public/Concurrency/Task.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ public func _runChildTask<T>(
977977

978978
// Create the asynchronous task future.
979979
let (task, _) = Builtin.createAsyncTaskFuture(
980-
flags.bits, operation)
980+
Int(flags.bits), operation)
981981

982982
// Enqueue the resulting job.
983983
_enqueueJobGlobal(Builtin.convertTaskToJob(task))

test/Concurrency/Runtime/custom_executors.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ actor Simple {
1515

1616
actor Custom {
1717
var count = 0
18-
nonisolated let simple = Simple()
18+
/*nonisolated*/ let simple = Simple()
1919

2020
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
2121
nonisolated var unownedExecutor: UnownedSerialExecutor {

0 commit comments

Comments
 (0)