From 0b4aea410381a003235d793760821acd771eb11c Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Mon, 28 Feb 2022 15:56:18 +0300 Subject: [PATCH] Fix exhaustive when error in :ring:compileKotlinNative --- .../ring/src/main/kotlin/org/jetbrains/ring/OctoTest/ocTree.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/OctoTest/ocTree.kt b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/OctoTest/ocTree.kt index 37ad4f6630e..360262ffe9b 100644 --- a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/OctoTest/ocTree.kt +++ b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/OctoTest/ocTree.kt @@ -96,6 +96,7 @@ open class OctoTree(val depth: Int) { } nodes[branchIndex] = Branch(node.value, number(x, y, z, depth - 1)) } + else -> {} } if (nodes[branchIndex]!!.set(x, y, z, value, depth - 1)) {