XcodesOrg / XcodesApp

The easiest way to install and switch between multiple versions of Xcode - with a mouse click.
MIT License
6.79k stars 294 forks source link

Sendable Conformance for Process #388

Closed egesucu closed 9 months ago

egesucu commented 1 year ago

Xcode was warning about "Stored property 'process' of 'Sendable'-conforming struct 'ProcessExecutionError' has non-sendable type 'Process'" The solution has been inspired by this article. @ unchecked is added since the extension conformance was not in the source code's file(Process class) and Xcode was recommending to add one.

egesucu commented 1 year ago

Noting that, this is more like a warning silencer and it "actually don't" conform Process as a sendable object, it tells Xcode that we did.