[Wasm] stdlib NFC: Fix or suppress remaining warnings

This commit is contained in:
Svyatoslav Kuzmich
2023-01-20 13:05:08 +01:00
parent 238da4c793
commit 72d9b8ddae
22 changed files with 46 additions and 17 deletions
@@ -27,7 +27,7 @@ public class Char private constructor(public val value: Char) : Comparable<Char>
public override fun equals(other: Any?): Boolean {
if (other is Char)
return this === (other as Char)
return wasm_i32_eq(this.toInt(), other.toInt())
return false
}