From 22d075dcdaac16fe18d18532a83ea0cda1fe4ad0 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Wed, 26 Jul 2023 13:22:39 +0200 Subject: [PATCH] [K/N] Fix swiftinterop performance build --- .../performance/swiftinterop/swiftSrc/benchmarks.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/performance/swiftinterop/swiftSrc/benchmarks.swift b/kotlin-native/performance/swiftinterop/swiftSrc/benchmarks.swift index 4cc49657bb6..3b369d81937 100644 --- a/kotlin-native/performance/swiftinterop/swiftSrc/benchmarks.swift +++ b/kotlin-native/performance/swiftinterop/swiftSrc/benchmarks.swift @@ -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