Skip to content

Commit 51b08c0

Browse files
Remove Codable from TerminationStatus (#143)
It doesn't seem like there's any good reason for this to be Codable. It was already removed from: - ProcessIdentifier - ExecutionResult (conditionally) - CollectedResult (conditionally) Closes #107
1 parent 6d5ffa5 commit 51b08c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Subprocess/Configuration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ extension Environment: CustomStringConvertible, CustomDebugStringConvertible {
456456

457457
/// An exit status of a subprocess.
458458
@frozen
459-
public enum TerminationStatus: Sendable, Hashable, Codable {
459+
public enum TerminationStatus: Sendable, Hashable {
460460
#if canImport(WinSDK)
461461
public typealias Code = DWORD
462462
#else

0 commit comments

Comments
 (0)