feat: Conforming types to Sendable
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import Foundation
|
||||
|
||||
public enum PlenumDimension: Equatable {
|
||||
public enum PlenumDimension: Equatable, Sendable {
|
||||
case rectangular(width: Double, height: Double)
|
||||
case round(Double)
|
||||
|
||||
@@ -15,7 +15,7 @@ public enum PlenumDimension: Equatable {
|
||||
}
|
||||
}
|
||||
|
||||
public enum Key: String, Equatable, CaseIterable, CustomStringConvertible {
|
||||
public enum Key: String, Equatable, CaseIterable, CustomStringConvertible, Sendable {
|
||||
|
||||
case rectangular, round
|
||||
|
||||
|
||||
Reference in New Issue
Block a user