From 73297a4ef35672594797fd83a54f2cf2c38d2895 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Wed, 20 Jan 2021 19:26:33 +0300 Subject: [PATCH] Remove obsolete comments in the test --- kotlin-native/backend.native/tests/interop/objc/smoke.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/kotlin-native/backend.native/tests/interop/objc/smoke.kt b/kotlin-native/backend.native/tests/interop/objc/smoke.kt index aac1156ba30..4bad1609993 100644 --- a/kotlin-native/backend.native/tests/interop/objc/smoke.kt +++ b/kotlin-native/backend.native/tests/interop/objc/smoke.kt @@ -68,10 +68,8 @@ fun run() { // hashCode (directly): // hash() returns value of NSUInteger type. val hash = if (sizeOf() == 4L) { - // `typedef unsigned int NSInteger` on watchOS. foo.hash().toInt() } else { - // `typedef unsigned long NSUInteger` on iOS, macOS, tvOS. foo.hash().let { it.toInt() xor (it shr 32).toInt() } } if (foo.hashCode() == hash) {