Remove forgotten ExperimentalStdlibApi in wasm sources

This commit is contained in:
Ilya Gorbunov
2023-08-22 01:10:16 +02:00
committed by Space Team
parent db6dfe99a0
commit 735a97245d
@@ -82,7 +82,6 @@ public actual inline fun Long.countOneBits(): Int =
/**
* Counts the number of consecutive most significant bits that are zero in the binary representation of this [Long] number.
*/
@ExperimentalStdlibApi
public actual fun Long.countLeadingZeroBits(): Int = wasm_i64_clz(this).toInt()
/**