Fix compilation

This commit is contained in:
2025-07-06 17:12:52 +10:00
parent 8920e205be
commit 58d8e648b9
3 changed files with 14 additions and 3 deletions

View File

@ -21,6 +21,17 @@ extension ApkVersionSpecification {
}
}
internal extension ApkVersionSpecification {
@inlinable var conflict: Bool {
switch self {
case .any(invert: true), .constraint(invert: true, _, _):
return true
default:
return false
}
}
}
extension ApkVersionSpecification.Operator: CustomStringConvertible {
var description: String {
switch self {