[K/N] Fix swiftinterop performance build

This commit is contained in:
Alexander Shabalin
2023-07-26 13:22:39 +02:00
committed by Space Team
parent fefb95a432
commit 22d075dcda
@@ -23,7 +23,7 @@ class SimpleCost: Cost {
return SimpleCost(cost: value - otherInstance.value)
}
func compareTo(other: Cost) -> Int32 {
func compareTo(other_ other: Cost) -> Int32 {
let otherInstance = other as! SimpleCost
if (value < otherInstance.value) {
return -1