Skip to content

Commit e2cc04f

Browse files
committed
Implement ModelInfo.Equatable.
1 parent 424e532 commit e2cc04f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diffusion/ModelInfo.swift

+4
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,7 @@ extension ModelInfo {
100100
ModelInfo.MODELS.first(where: {$0.modelId == modelId})
101101
}
102102
}
103+
104+
extension ModelInfo : Equatable {
105+
static func ==(lhs: ModelInfo, rhs: ModelInfo) -> Bool { lhs.modelId == rhs.modelId }
106+
}

0 commit comments

Comments
 (0)