杨锴
2025-03-11 90dc3329d1973fda691e357cf4523d5c7c67fa1d
Pods/RxSwift/Platform/AtomicInt.swift
@@ -6,9 +6,12 @@
//  Copyright © 2018 Krunoslav Zaher. All rights reserved.
//
import CoreFoundation
// This CoreFoundation import can be dropped when this issue is resolved:
// https://github.com/swiftlang/swift-corelibs-foundation/pull/5122
import Foundation
final class AtomicInt: NSLock {
final class AtomicInt: NSLock, @unchecked Sendable {
    fileprivate var value: Int32
    public init(_ value: Int32 = 0) {
        self.value = value