Skip to content

Commit

Permalink
Add Sendable conformance to AtomicInt (#2624)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelofabri committed Aug 27, 2024
1 parent 853087c commit 5c3222c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Platform/AtomicInt.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

final class AtomicInt: NSLock {
final class AtomicInt: NSLock, @unchecked Sendable {
fileprivate var value: Int32
public init(_ value: Int32 = 0) {
self.value = value
Expand Down

0 comments on commit 5c3222c

Please sign in to comment.