File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class Submission<T: Sendable>: CustomStringConvertible {
3636 private let sqe : UnsafeMutablePointer < io_uring_sqe >
3737 private var cancellationToken : UnsafeMutableRawPointer ?
3838
39- public nonisolated var description : String {
39+ nonisolated var description : String {
4040 " ( \( type ( of: self ) ) )(fd: \( fd. fileDescriptor) , opcode: \( opcode) , handler: \( String ( describing: handler) ) ) "
4141 }
4242
@@ -537,13 +537,13 @@ struct AsyncCancelFlags: OptionSet {
537537}
538538
539539extension Submission : Equatable {
540- public nonisolated static func == ( lhs: Submission , rhs: Submission ) -> Bool {
540+ nonisolated static func == ( lhs: Submission , rhs: Submission ) -> Bool {
541541 lhs === rhs
542542 }
543543}
544544
545545extension Submission : Hashable {
546- public nonisolated func hash( into hasher: inout Hasher ) {
546+ nonisolated func hash( into hasher: inout Hasher ) {
547547 ObjectIdentifier ( self ) . hash ( into: & hasher)
548548 }
549549}
You can’t perform that action at this time.
0 commit comments