From c4772eec409bb466a738c1ee830ab6ae07dd1183 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 2 May 2021 19:54:48 +0200 Subject: [PATCH] Fixed JVM compilation error. --- .../jvmMain/kotlin/world/phantasmal/core/unsafe/UnsafeCast.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/jvmMain/kotlin/world/phantasmal/core/unsafe/UnsafeCast.kt b/core/src/jvmMain/kotlin/world/phantasmal/core/unsafe/UnsafeCast.kt index ba35ab82..81e3a373 100644 --- a/core/src/jvmMain/kotlin/world/phantasmal/core/unsafe/UnsafeCast.kt +++ b/core/src/jvmMain/kotlin/world/phantasmal/core/unsafe/UnsafeCast.kt @@ -1,3 +1,5 @@ +@file:JvmName("UnsafeCastJvm") + package world.phantasmal.core.unsafe @Suppress("UNCHECKED_CAST", "NOTHING_TO_INLINE")